You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div id="app">
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'App'
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
@font-face {
|
|
|
|
font-family: 'NotoSans';
|
|
|
|
src: url('./assets/font/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
|
|
|
|
//src: url('./assets/font/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
font-family: 'NotoSans', 'Avenir', Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
color: #2c3e50;
|
|
|
|
//margin-top: 60px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|