smart-home/ziyuan/smart-home-app-Alarm Status/App.vue
2026-02-26 09:16:34 +08:00

24 lines
389 B
Vue

<script>
import { applyTabBarI18n } from '@/utils/simpleI18n.js'
export default {
onLaunch: function() {
console.log('App Launch')
applyTabBarI18n()
},
onShow: function() {
console.log('App Show')
applyTabBarI18n()
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
page {
background-color: #f5f5f5;
}
</style>