Files
tcwm-uniapp-user/pages/index/webView.vue
2024-06-06 11:50:53 +08:00

16 lines
304 B
Vue

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