Files
ysdH5/pages/washcar/washcar.vue
2023-06-21 17:19:58 +08:00

23 lines
359 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: '' // h5连接地址
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url)
},
methods:{}
}
</script>
<style>
</style>