PropertyApp/pages/hcWebView/hcWebView.vue

29 lines
368 B
Vue
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="h5-html">
 <web-view ref="webview"  :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(options) {
let _url = options.url;
this.url = decodeURIComponent(_url);
},
methods: {
}
}
</script>
<style>
.h5-html {
width: 100%;
height: 100%;
}
</style>