rem基准为1080

This commit is contained in:
X1627315083
2025-10-09 11:20:35 +08:00
parent d6508582ec
commit ffaf4c8d44
5 changed files with 21 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ import store from './stores/index'
import 'normalize.css/normalize.css'
import './assets/css/style.css'
import SvgIcon from "@/components/SvgIcon/index.vue";
import "virtual:svg-icons-register";
import flexible from "./utils/flexible.js";
@@ -28,9 +29,9 @@ document.addEventListener('touchend', function(event) {
const app = createApp(App)
// app.use(ElementPlus)
app.use(router)
app.use(store)
app.component("SvgIcon", SvgIcon)
.use(store)
.component("SvgIcon", SvgIcon)
.mount('#app')
flexible();
app.mount('#app')