32 lines
496 B
Vue
32 lines
496 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
//console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
//console.log('App Hide')
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style >
|
|
body{
|
|
background-color: #070707;
|
|
background-image: linear-gradient(0deg,#222222 0%,#010101 51%,#070707 75%);
|
|
color: white;
|
|
font-size: 15rpx;
|
|
}
|
|
/* .page{
|
|
width: 100%;
|
|
background-color: #070707;
|
|
|
|
position: absolute;
|
|
} */
|
|
|
|
</style>
|