@nathan-cv/vue-typeahead-bootstrap
Version:
A typeahead/autocomplete component for Vue 2 using Bootstrap 4
5 lines • 360 B
HTML
<meta charset="utf-8"><title>VueTypeaheadBootstrap demo</title><script src="//unpkg.com/vue@2"></script><script src="./VueTypeaheadBootstrap.umd.js"></script><link rel="stylesheet" href="./VueTypeaheadBootstrap.css"><div id="app"><demo></demo></div><script>new Vue({
components: {
demo: VueTypeaheadBootstrap
}
}).$mount('#app')</script>