Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 499 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 499 Bytes

bp-vuejs-dropdown

Documentation and demo

Install:

npm i -D bp-vuejs-dropdown
import Vue from 'vue';
import Dropdown from 'bp-vuejs-dropdown';
// global
Vue.use(Dropdown)
// local
components: { Dropdown }

Use:

<dropdown>
    <template slot="btn">Custom btn</template>
    <template slot="icon">Custom icon</template>
    <template slot="body">Custom body</template>
</dropdown>