Files
tv-pro/uni_modules/yykj-tv/pages/home/home.vue
2025-06-16 13:40:43 +08:00

18 lines
212 B
Vue

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