campus-errand/miniapp/pages/webview/webview.vue
2026-03-01 05:01:47 +08:00

16 lines
233 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>