- <template>
- <web-view :src="url"></web-view>
- </template>
-
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- const url = ref('')
- onLoad((options) => {
- // 传入需要跳转的链接 使用web-view标签进行跳转
- url.value = decodeURIComponent(options.url)
- })
- </script>
|