49 lines
885 B
Vue
49 lines
885 B
Vue
|
<!--
|
||
|
* @FilePath: \wwwd:\code\screenFront\src\App.vue
|
||
|
* @Author: 王路平
|
||
|
* @文件版本: V1.0.0
|
||
|
* @Date: 2023-01-29 15:16:36
|
||
|
* @Description:
|
||
|
*
|
||
|
* 版权信息 : 2023 by ${再登软件}, All Rights Reserved.
|
||
|
-->
|
||
|
<template>
|
||
|
|
||
|
<!-- <ScaleScreen :width="1920" :height="1080" > -->
|
||
|
|
||
|
<router-view/>
|
||
|
|
||
|
|
||
|
<!-- </ScaleScreen> -->
|
||
|
</template>
|
||
|
<script setup lang="ts">
|
||
|
|
||
|
import ScaleScreen from "@/components/scale-screen/scale-screen.vue";
|
||
|
</script>
|
||
|
<style>
|
||
|
@import './assets/css/reset.css';
|
||
|
#app {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
background: #100c2a;
|
||
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
text-align: center;
|
||
|
color: #2c3e50;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
padding: 30px;
|
||
|
}
|
||
|
|
||
|
nav a {
|
||
|
font-weight: bold;
|
||
|
color: #2c3e50;
|
||
|
}
|
||
|
|
||
|
nav a.router-link-exact-active {
|
||
|
color: #42b983;
|
||
|
}
|
||
|
</style>
|