@mozaic-ds/vue-3
Version:
Vue.js implementation of Mozaic Design System
13 lines (9 loc) • 298 B
JavaScript
import MListBox from './MListBox.vue';
import MListBoxActions from './MListBoxActions.vue';
MListBox.install = (app) => {
app.component('MListBox', MListBox);
};
MListBoxActions.install = (app) => {
app.component('MListBoxActions', MListBoxActions);
};
export { MListBox, MListBoxActions };