This commit is contained in:
2022-11-03 04:58:16 +08:00
parent 93e69d7516
commit 7b2f3e8675
24 changed files with 11406 additions and 64 deletions

10
src/main.ts Normal file
View File

@ -0,0 +1,10 @@
import {createApp} from 'vue'
import App from './App.vue'
// 额外引入图标库
import ArcoVueIcon from '@arco-design/web-vue/es/icon';
import './assets/main.css'
const app = createApp(App);
app.use(ArcoVueIcon);
app.mount('#app');