Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <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>
|