23 lines
256 B
Vue
23 lines
256 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="webUrl"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
webUrl: ''
|
|
};
|
|
},
|
|
created() {
|
|
this.webUrl = this.$Route.query.url
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|