mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
11 lines
359 B
JavaScript
11 lines
359 B
JavaScript
// import docs from '@dynamic/api.js';
|
|
import ApiProps from './components/ApiProps';
|
|
import ApiEvents from './components/ApiEvents';
|
|
import ApiSlots from './components/ApiSlots';
|
|
|
|
export default ({Vue, options, router, siteData}) => {
|
|
Vue.component('api-props', ApiProps);
|
|
Vue.component('api-slots', ApiSlots);
|
|
Vue.component('api-events', ApiEvents);
|
|
}
|