sadjv3_user/pages/index/webView.vue

16 lines
304 B
Vue
Raw Normal View History

2024-06-05 19:16:02 +08:00
<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: null //要打开的外部链接
}
},
onLoad: function (option) {
this.url = option.url
}
}
</script>