| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
- 123
- </view>
- </template>
- <script setup>
- import {
- ref
- } from 'vue'
- import {
- onReady,
- onShow,
- onLaunch
- } from '@dcloudio/uni-app'
- const title = ref('Hello')
- onLaunch(() => {
-
- });
-
- </script>
- <style lang="scss">
- @import "@/uni_modules/uview-plus/index.scss";
- /*每个页面公共css */
- </style>
|