1234567891011121314151617181920 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- /* #ifdef MP-WEIXIN */
- @import "/wxcomponents/dist/common/index.wxss"; //路径要确保正确!!!!
- /* #endif */
- </style>
|