Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

16 Zeilen
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>