store-management-app/src/App.vue

16 lines
228 B
Vue
Raw Normal View History

2024-08-26 03:15:07 +00:00
<script>
export default {
2024-10-21 06:41:58 +00:00
onLaunch: function () {},
2024-08-26 03:15:07 +00:00
onShow: function () {
2024-10-09 07:43:03 +00:00
console.log("App Show");
2024-08-26 03:15:07 +00:00
},
onHide: function () {
2024-10-09 07:43:03 +00:00
console.log("App Hide");
2024-08-26 03:15:07 +00:00
},
2024-10-09 07:43:03 +00:00
};
2024-08-26 03:15:07 +00:00
</script>
<style>
/*每个页面公共css */
</style>