shangjia1.1/pages/web_view/web_view.vue

21 lines
358 B
Vue
Raw Normal View History

2024-11-08 14:33:35 +08:00
<template>
<web-view :src="url" bindmessage="getMessage"></web-view>
</template>
<script>
export default {
data() {
return {
title: '外部链接',
url: ''
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url)
this.title = options.title;
uni.setNavigationBarTitle({
title: options.title
})
}
}
</script>