index.vue 312 B

123456789101112131415
  1. <template>
  2. <web-view :src="url"></web-view>
  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. // 传入需要跳转的链接 使用web-view标签进行跳转
  10. url.value = decodeURIComponent(options.url)
  11. })
  12. </script>