App.vue 337 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view>
  3. 123
  4. </view>
  5. </template>
  6. <script setup>
  7. import {
  8. ref
  9. } from 'vue'
  10. import {
  11. onReady,
  12. onShow,
  13. onLaunch
  14. } from '@dcloudio/uni-app'
  15. const title = ref('Hello')
  16. onLaunch(() => {
  17. });
  18. </script>
  19. <style lang="scss">
  20. @import "@/uni_modules/uview-plus/index.scss";
  21. /*每个页面公共css */
  22. </style>