-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
40 lines (38 loc) · 837 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
<script>
import init from '@/core/init.js';
export default {
onLaunch: function() {
console.log('App Launch');
// 初始化,连接 WebSocket
init();
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
@import "static/css/common.css";
@import "static/css/tailwind.min.css";
uni-tabbar {
.uni-tabbar { // tab背景
.uni-tabbar-border { // tabBar上边框
display: none;
}
}
}
.content {
width: 100%;
height: calc(100vh - 80upx);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
// background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
</style>