2025年6月9日10:23:02

This commit is contained in:
17792275749
2025-06-09 10:23:05 +08:00
commit 9df8b7e8e2
146 changed files with 23980 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<style lang="less">
@font-face {
font-family: "PingFang";
src: url("@/assets/fonts/PingFang.ttf") format("opentype");
font-weight: 500;
font-style: normal;
}
* {
border: 0;
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
width: 100%;
height: 100%;
overflow: hidden;
font-family: "PingFang";
}
img {
width: 100%;
}
</style>