This commit is contained in:
zoujiandong
2025-07-15 17:48:57 +08:00
parent 30b08f1933
commit b0f1a37ece
101 changed files with 4315 additions and 263 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>