App.vue 615 字节
Newer Older
1
<!-- HBuilder X 版本要求: 3.6.11+ -->
杜庆泉's avatar
init  
杜庆泉 已提交
2
<script>
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
export default {
  onLaunch: function () {
    console.log('App Launch');
  },
  onShow: function () {
    console.log('App Show');
  },
  onHide: function () {
    console.log('App Hide');
  },
  onLastPageBackPress: function (): boolean | null {
    uni.showToast({
      title: '再按一次退出应用',
      position: 'bottom',
    });
    return null;
  },
};
杜庆泉's avatar
init  
杜庆泉 已提交
21 22 23
</script>

<style>
24 25 26 27 28
/*每个页面公共css */
/* uni.css - 通用组件、模板样式库,可以当作一套ui库应用 */
/* #ifdef APP-VUE */
@import './common/uni.css';
/* #endif */
杜庆泉's avatar
init  
杜庆泉 已提交
29
</style>