25 lines
425 B
Vue
25 lines
425 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 */
|
|
@import url('./common/global.css');
|
|
page {
|
|
background-color: #f5f5f5;
|
|
}
|
|
</style>
|