33 lines
496 B
Vue
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>
|