alipay-emulator/App.vue

23 lines
422 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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">
/*每个页面公共css */
/* #ifdef VUE */
/* 只在vue页面生效的样式nvue页面不使用 */
@import './common/main.css';
@import './common/layouts.less';
/* #endif */
</style>