Made a little welcome dialog to tell the user about keyboard shortcuts. Everybody loves a good keyboard shortcut

This commit is contained in:
Alicia Sykes
2019-10-12 20:10:47 +01:00
parent 2f4d0555f8
commit 8b45e13708
3 changed files with 124 additions and 2 deletions
+5
View File
@@ -15,10 +15,12 @@
@click="clearFilterInput"></i>
</form>
<div class="space-filler"></div>
<KeyboardShortcutInfo />
</section>
</template>
<script>
import KeyboardShortcutInfo from '@/components/KeyboardShortcutInfo';
export default {
name: 'FilterTile',
@@ -27,6 +29,9 @@ export default {
input: '',
};
},
components: {
KeyboardShortcutInfo,
},
methods: {
userIsTypingSomething() {
this.$emit('user-is-searchin', this.input);