store-management-app/src/App.vue

21 lines
427 B
Vue
Raw Normal View History

2024-08-26 03:15:07 +00:00
<script>
export default {
2024-10-22 03:24:43 +00:00
onLaunch: function () {
const token = window?.plus?.storage.getItem("token");
uni.setStorageSync("token", token);
},
2024-08-26 03:15:07 +00:00
onShow: function () {
2024-10-09 07:43:03 +00:00
console.log("App Show");
2024-10-22 03:24:43 +00:00
const token = window?.plus?.storage.getItem("token");
uni.setStorageSync("token", token);
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>