Files
2026-07-23 18:56:35 +08:00

30 lines
557 B
Vue

<script>
const brandStore = require('./store/brand')
export default {
onLaunch: function() {
console.log('Coach App Launch')
brandStore.fetchConfig()
},
onShow: function() {
console.log('Coach App Show')
brandStore.fetchConfig()
},
onHide: function() {
console.log('Coach App Hide')
}
}
</script>
<style>
page {
background: #F5F7FA;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: #1E1E1E;
font-size: 14px;
}
view, text, button, input {
box-sizing: border-box;
}
</style>