Files
im-uniapp/pages/common/webviewWrapper/index.vue
2025-07-04 16:18:58 +08:00

19 lines
251 B
Vue

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