您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
358 B

  1. <template>
  2. <web-view v-if="url" :src="url" />
  3. </template>
  4. <script setup>
  5. import { ref } from 'vue'
  6. import { onLoad } from '@dcloudio/uni-app'
  7. const url = ref('')
  8. onLoad((options) => {
  9. if (options.url) url.value = decodeURIComponent(options.url)
  10. if (options.title) uni.setNavigationBarTitle({ title: decodeURIComponent(options.title) })
  11. })
  12. </script>