kBar
Vuetify A simple plug-n-play cmd+k interface for Vuetify.
⚠️⚠️ This project is currently is in work-in-progress stage.
Guide
Install
$ npm install @socheatsok78/vuetify-kbar@next
# or
$ yarn add @socheatsok78/vuetify-kbar@next
Usage
<template>
<v-app id="app">
<v-kbar-provider :actions="actions" />
</v-app>
</template>
<script>
import { mdiClipboard } from '@mdi/js'
const actions = [
{
id: 'blog',
name: 'Blog',
icon: mdiClipboard,
description: '',
shortcut: ['b'],
keywords: 'writing words',
perform: () => (window.location.pathname = 'blog')
},
{
id: 'contact',
name: 'Contact',
shortcut: ['c'],
keywords: 'email',
perform: () => (window.location.pathname = 'contact')
}
]
export default {
name: 'App',
data: () => ({
actions: actions
})
}
</script>
Development
This project was created using @vue/cli
service.
Project setup
yarn install
Compiles and hot-reloads for development
yarn serve
Compiles and minifies for production
yarn build
Run your unit tests
yarn test:unit
Lints and fixes files
yarn lint