| 1234567891011121314151617181920212223242526272829303132 |
- <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 '@/static/theme/theme.module.scss';
- ::-webkit-scrollbar {
- width: 0 !important;
- height: 0 !important;
- color: transparent !important;
- display: none !important;
- }
- image {
- will-change: transform, width, height;
- }
- </style>
|