This commit is contained in:
xiaoma
2022-02-14 15:12:32 +08:00
parent caaca83f78
commit a53c86e41b
10 changed files with 7646 additions and 109 deletions

View File

@@ -3,8 +3,6 @@ import { createApp } from 'vue';
import App from './App.vue';
import router, { setupRouter } from './router';
import { setupStore } from '@/store';
import MakeitCaptcha from 'makeit-captcha';
import 'makeit-captcha/dist/captcha.min.css';
import { setupNaive, setupDirectives } from '@/plugins';
import { AppProvider } from '@/components/Application';
@@ -13,8 +11,6 @@ async function bootstrap() {
const app = createApp(App);
app.use(MakeitCaptcha);
// 注册全局常用的 naive-ui 组件
setupNaive(app);