Files
sociology_app/pages/component/web-view/web-view.vue
2025-03-12 11:39:31 +08:00

31 lines
504 B
Vue

<template>
<view>
<web-view :src="url" @message="getMessage"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: "https://uniapp.dcloud.io/static/web-view.html",
};
},
onLoad(options) {
if (options && options.url) {
this.url = options.url;
}
},
methods: {
getMessage(event) {
uni.showModal({
content: JSON.stringify(event.detail),
showCancel: false,
});
},
},
};
</script>
<style></style>