deming/App.vue

17 lines
285 B
Vue
Raw Normal View History

2020-05-29 11:13:55 +08:00
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
2020-06-02 08:47:57 +08:00
<style lang="scss">
@import "/static/css/normalize"
</style>