Files
im/pages/common/webviewWrapper/index.vue
T
2025-11-21 01:40:07 +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>