createName/App.vue

18 lines
270 B
Vue
Raw Permalink Normal View History

2021-05-15 05:54:09 +00:00
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>