懒羊羊
2023-12-12 9715e894685dbb8cee1d411ffc5958e658f3f2eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <div id="app">
    <router-view />
  </div>
</template>
 
<style lang="scss" scoped>
#app {
  width: 100vw;
  height: 100vh;
  background-color: #020308;
  overflow: hidden;
}
</style>