Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <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>
|