Files
dvcp_v2_wxcp_app/src/project/pingchang/AppRedemptionPoints/jdH5.vue
2023-05-17 15:38:42 +08:00

20 lines
272 B
Vue

<template>
<div class="jdH5">
<web-view :src="goodsJdUrl"></web-view>
</div>
</template>
<script>
export default {
name: 'jdH5',
data() {
return {
goodsJdUrl: ''
}
},
onLoad(option) {
this.goodsJdUrl = option.goodsJdUrl
},
}
</script>