19 lines
282 B
Vue
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> |