feat(projects): integration fast-crud

This commit is contained in:
xiaojunnuo
2023-05-15 17:41:17 +08:00
parent f68285fbe5
commit 59af204a4c
24 changed files with 3275 additions and 77 deletions

View File

@@ -3,7 +3,7 @@ import App from './App.vue';
import AppLoading from './components/common/app-loading.vue';
import { setupDirectives } from './directives';
import { setupRouter } from './router';
import { setupAssets } from './plugins';
import { setupAssets, setupFastCrud } from './plugins';
import { setupStore } from './store';
import { setupI18n } from './locales';
@@ -29,6 +29,8 @@ async function setupApp() {
setupI18n(app);
setupFastCrud(app);
// mount app
app.mount('#app');
}