21 lines
369 B
Vue
21 lines
369 B
Vue
<!--
|
|
* @Author: daidai
|
|
* @Date: 2022-01-12 14:06:47
|
|
* @LastEditors: daidai
|
|
* @LastEditTime: 2022-03-01 17:55:49
|
|
* @FilePath: \web-pc\src\pages\big-screen\App.vue
|
|
-->
|
|
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
#app {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: #03050C;
|
|
// overflow: hidden;
|
|
}
|
|
</style> |