Files
tv-pro/uni_modules/yykj-tv/pages/home/home.vue
2025-08-28 13:34:09 +08:00

19 lines
282 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
};
},
onLoad (options) {
const timestamp = new Date().getTime()
this.url = `${options.url}?timestamp=${timestamp}`
}
}
</script>