This commit is contained in:
zoujiandong
2025-05-16 17:16:23 +08:00
parent 7003f55dec
commit fc0d7ce817
19 changed files with 1354 additions and 311 deletions
+16
View File
@@ -0,0 +1,16 @@
<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>