移动端-首页和我的
This commit is contained in:
+10
-8
@@ -1,11 +1,13 @@
|
||||
import 'element-plus/dist/index.css'
|
||||
import './styles/base.css'
|
||||
import "element-plus/dist/index.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
import ElementPlus from 'element-plus'
|
||||
import { createPinia } from 'pinia'
|
||||
import { createApp } from 'vue'
|
||||
import ElementPlus from "element-plus";
|
||||
import { createPinia } from "pinia";
|
||||
import { createApp } from "vue";
|
||||
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import App from "./App.vue";
|
||||
import router from "./router";
|
||||
|
||||
createApp(App).use(createPinia()).use(router).use(ElementPlus).mount('#app')
|
||||
const app = createApp(App);
|
||||
app.use(createPinia()).use(router).use(ElementPlus);
|
||||
router.isReady().then(() => app.mount("#app"));
|
||||
|
||||
Reference in New Issue
Block a user