YNUtdPlatform/pages/webview.vue

20 lines
291 B
Vue
Raw Normal View History

2024-08-07 14:53:53 +08:00
<template>
<web-view :src="webviewUrl"></web-view>
</template>
<script>
export default {
data() {
return {
webviewUrl: ''
}
},
onLoad(options) {
this.webviewUrl = decodeURIComponent(options.webviewUrl);
console.log(this.webviewUrl)
}
}
</script>
<style>
</style>