cloudroam
2024-11-28 d6d2ea67eee88f3d9dea2df0fd338c807ab0ace4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
  <div id="app">
    <!-- <img alt="Vue logo" src="./assets/logo.png">
    <HelloWorld msg="Welcome to Your Vue.js App"/> -->
    <!-- <button @click="test">测试1</button> -->
    <router-view></router-view>
  </div>
</template>
 
<script>
// import HelloWorld from './components/HelloWorld.vue'
 
export default {
  name: 'App',
  methods:{
    test(){
      console.log(this.$router)
      this.$router.push({'path':'/screen1'})
    }
  },
  components: {
    // HelloWorld
  }
}
</script>
 
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  /* margin-top: 60px; */
  overflow-x: hidden;
}
#dv-full-screen-container{
  background-color: rgba(227, 237, 248, 1);
}
.screen-bg{
  background-color: rgba(227, 237, 248, 1);
  min-height: 100vh;
}
body{
  margin:  0px;
  background-color: rgba(227, 237, 248, 1);
 
}
</style>