UNPKG

vue-typeahead-bootstrap

Version:

A typeahead/autocomplete component for Vue 2 using Bootstrap 4

18 lines (15 loc) 364 B
<meta charset="utf-8"> <title>VueTypeaheadBootstrap demo</title> <script src="https://unpkg.com/vue"></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>