Files
douhuo-h5/pages/webview/webCode.vue
2023-05-15 13:18:38 +08:00

23 lines
402 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: '' // 外部链接地址
}
},
onLoad(options) {
// 跳到关注公众号页面
this.$Router.replace({name: 'indexGeneral', params: {code: options.code}})
},
}
</script>
<style>
</style>