zoujiandong fc0d7ce817 5.16
2025-05-16 17:16:23 +08:00

17 lines
251 B
Vue

<template>
<web-view :src="src"></web-view>
</template>
<script setup>
import { ref } from 'vue';
import { onLoad } from "@dcloudio/uni-app";
const src=ref('')
onLoad((option)=>{
src.value=option.src
})
</script>
<style scoped>
</style>