21 lines
265 B
Vue
21 lines
265 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="imUrl"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return{
|
|
imUrl:''
|
|
}
|
|
},
|
|
onLoad(data) {
|
|
this.imUrl = decodeURIComponent(data.imUrl)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |