A macOS Spotlight like widget for websites with Vue
npm install vue-spotlight -S
import Spotlight from 'vue-spotlight'
// register globally
Vue.component('Spotlight', Spotlight)
// or locally
export default {
components: { Spotlight}
}
And then you can place it in your template
<Spotlight field-name="symbol" :data-provider="dataProvider" :widget-open="open" :action="action" :match-renderer="renderer"/>
To start webpack in watch mode run:
npm run dev
Krisztian Papp @tacsiazuma