Files
im/uniapp/pages/common/webviewWrapper/index.vue
T
2025-11-07 09:56:20 +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>