Files
shoot-miniprograms/src/pages/webview.vue
2025-09-04 15:42:59 +08:00

16 lines
274 B
Vue

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