xiangyixiangqin/miniapp/pages/webview/index.vue
2026-01-26 22:33:33 +08:00

19 lines
229 B
Vue

<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(options) {
if (options.url) {
this.url = decodeURIComponent(options.url)
}
}
}
</script>