| 12345678910111213141516171819202122 |
- <script>
- import { useAppStore } from '@/store/appStore';
- export default {
- onLaunch: function () {
- console.log('App Launch')
- const appStore = useAppStore();
- appStore.init();
- },
- onShow: function () {
- console.log('App Show')
- },
- onHide: function () {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- /* @import "@/uni_modules/uv-ui-tools/index.scss"; */
- @import '@/static/theme/theme.module.scss';
- </style>
|