-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.vue
65 lines (54 loc) · 1012 Bytes
/
App.vue
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
page {
font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}
</style>
<style lang="scss">
@import './colorui/main.scss';
/*每个页面公共css */
/* #ifndef APP-PLUS-NVUE */
page {
background: #fff;
}
image {
margin: 0;
padding: 0;
}
button {
border-radius: 0;
border: nonel;
background-color: transparent;
padding: 0;
line-height: normal;
font-size: 28rpx;
overflow: visible;
margin: 0;
}
button::after {
border: none;
border-radius: 0;
}
::-webkit-scrollbar {
width: 0px;
/* 滚动条宽度为0 */
height: 0px;
/* 滚动条高度为0 */
display: transparent;
/* 滚动条隐藏 */
}
/* #endif */
</style>