Files
2026-02-08 19:07:06 +08:00

22 lines
324 B
Vue

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