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.
26 lines
326 B
26 lines
326 B
<template>
|
|
<view>
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
var app = getApp();
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
opt:{},
|
|
loading:false,
|
|
isload: false,
|
|
menuindex:-1,
|
|
|
|
url: ''
|
|
};
|
|
},
|
|
|
|
onLoad: function (opt) {
|
|
this.url = decodeURIComponent(opt.url);
|
|
}
|
|
};
|
|
</script>
|
|
|