25 lines
297 B
Vue
25 lines
297 B
Vue
|
<template>
|
||
|
<web-view :src="url"></web-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {
|
||
|
//MySwiper,
|
||
|
},
|
||
|
data: {
|
||
|
url: ''
|
||
|
},
|
||
|
onLoad: function(options) {
|
||
|
this.setData({
|
||
|
url: decodeURIComponent(options.url)
|
||
|
})
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|