Files
MALL_MP_WX/pages/link/link.vue
dt_2916866708 f756390529 第一次提交
2024-02-28 17:26:46 +08:00

26 lines
255 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
methods: {
},
onReady() {},
onLoad(e) {
this.url = e.url
},
}
</script>
<style>
</style>