Files
2024-09-27 01:09:14 +08:00

20 lines
354 B
Vue
Raw Permalink 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() {
// 模拟数据保存用户id实际项目中这应该是用户token
uni.setStorageSync('userinfo', { id: 1 });
console.log('App Launch')
},
onShow: function() {
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>