| 123456789101112131415161718 |
- <template>
- <web-view :src="src" v-if="src"></web-view>
- </template>
- <script setup name="">
- import { onLoad } from '@dcloudio/uni-app'
- import { ref } from 'vue'
-
- const src = ref('')
-
- onLoad((options)=>{
- src.value = options.src;
- })
- </script>
- <style scoped lang="scss">
-
- </style>
|