Files
ranking_list_h5/src/App.vue
T
2025-06-09 10:23:05 +08:00

33 lines
496 B
Vue

<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>