Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <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>
|