chore: 引入vant组件

This commit is contained in:
zhangyh
2025-10-09 11:33:47 +08:00
parent ef6db09d46
commit 92d23601e3
7 changed files with 167 additions and 252 deletions

View File

@@ -2,15 +2,12 @@ import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
// import ElementPlus from 'element-plus'
import store from './stores/index'
import 'normalize.css/normalize.css'
import './assets/css/style.css'
import flexible from "./utils/flexible.js";
//引入element-plus相关样式
import 'element-plus/dist/index.css'
import './assets/main.css'
import "./router/router-config" // 路由守卫,做动态路由的地方
@@ -24,7 +21,6 @@ document.addEventListener('touchend', function(event) {
}, false);
const app = createApp(App)
// app.use(ElementPlus)
app.use(router)
app.use(store)
flexible();