21 lines
232 B
Vue
21 lines
232 B
Vue
<template>
|
|
<view class="">
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
url:""
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.url = options.id
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |