You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
696 B
23 lines
696 B
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
import store from './store';
|
|
import installElementPlus from './plugins/element';
|
|
import 'normalize.css/normalize.css'; // a modern alternative to CSS resets
|
|
import '@/styles/index.scss'; // global css
|
|
|
|
// 导入 svgIcon
|
|
import installIcons from '@/icons';
|
|
import Message from '@/components/Message/index.js';
|
|
import Confirm from '@/components/Confirm/index.js';
|
|
import components from '@/components';
|
|
import '@/styles/element/index.scss';
|
|
|
|
const app = createApp(App);
|
|
installElementPlus(app);
|
|
installIcons(app);
|
|
|
|
app.use(components);
|
|
|
|
app.use(store).use(router).use(Confirm).use(Message).mount('#app');
|