20 lines
325 B
Vue
20 lines
325 B
Vue
<template>
|
|
<view class="pages">
|
|
<web-view :src="https"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
https: "",
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
this.https = decodeURIComponent(decodeURIComponent(option.https));
|
|
console.log("https:" + option.https);
|
|
},
|
|
};
|
|
</script>
|