@mee4dy/crud
Version:
Create a backend and frontend in 5 minutes! With our powerful full stack crud system, customize it to suit you.
18 lines (14 loc) • 358 B
JavaScript
import './scss/style.scss';
import UiPanel from './components/Panel/Index.vue';
import UiTable from './components/Table/Index.vue';
const CrudPanel = {
install(Vue, options) {
Vue.component('CrudPanel', UiPanel);
},
};
const CrudTable = {
install(Vue, options) {
Vue.component('CrudTable', UiTable);
},
};
export { CrudPanel, CrudTable };