26 lines
436 B
Vue
26 lines
436 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import "./common/less/_.less";
|
|
@import url("./static/fonts/iconfont.css");
|
|
@font-face {
|
|
font-family: "iconfont";
|
|
src: url('./static/fonts/iconfont.ttf');
|
|
}
|
|
/deep/body{
|
|
background: #ffffff;
|
|
}
|
|
</style>
|