dashboard/shell/initialize/install-components.js

12 lines
230 B
JavaScript

import vSelect from 'vue-select';
/**
* Add components to the Vue instance
* @param {*} vueApp Vue instance
*/
export const installComponents = (vueApp) => {
// Vendor components
vueApp.component('v-select', vSelect);
};