You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
364 B
29 lines
364 B
<template>
|
|
<view>
|
|
<far-bottom></far-bottom>
|
|
<web-view :src="Url" class="hello">
|
|
|
|
</web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
Url:'',
|
|
};
|
|
},
|
|
onLoad:function(option){
|
|
let _this=this
|
|
_this.Url=option.Url
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.hello{
|
|
width: 300upx;
|
|
height: 300upx;
|
|
}
|
|
</style>
|
|
|