@kevindesousa/vue-dropdown
v2.0.0
Published
A Vue.js component that displays a dropdown
Downloads
3
Readme
vue-dropdown
A Vue component that shows a dropdown.
Installation
npm i --save @kevindesousa/vue-dropdown
Browser
Include the script file, then install the component with Vue.use(VueDropdown);
e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/vue-dropdown-simple/dist/vue-dropdown.min.js"></script>
<script type="text/javascript">
Vue.use(VueDropdown);
</script>
Module
import VueDropdown from '@kevindesousa/vue-dropdown';
Usage
Once installed, it can be used in a template as simply as:
<vue-dropdown></vue-dropdown>