2022-11-13 18:02:05 +08:00
|
|
|
import { createApp } from 'vue';
|
|
|
|
import App from './App.vue';
|
2022-11-14 17:11:23 +08:00
|
|
|
import './styles.less';
|
2022-11-16 23:01:23 +08:00
|
|
|
import 'ant-design-vue/dist/antd.dark.css';
|
2022-11-13 18:02:05 +08:00
|
|
|
|
|
|
|
createApp(App).mount('#root');
|