旅游教育出版社-数字教材移动端
QYF-GitLab1
昨天 8e3ee81b6ed824866734b7034604121f370f4201
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
<template>
  <div id="app">
    <router-view />
  </div>
</template>
 
<script>
export default {
  name: "app",
  methods: {
    onClick() {
      console.log(1111);
    }
  }
};
</script>
 
<style>
#app {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
</style>