mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-15 08:15:37 +00:00
Made a little welcome dialog to tell the user about keyboard shortcuts. Everybody loves a good keyboard shortcut
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user