Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <template>
- <web-view v-if="url" :src="url" />
- </template>
-
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- const url = ref('')
-
- onLoad((options) => {
- if (options.url) url.value = decodeURIComponent(options.url)
- if (options.title) uni.setNavigationBarTitle({ title: decodeURIComponent(options.title) })
- })
- </script>
|