26 lines
391 B
Vue
26 lines
391 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="line"></web-view>
|
|
<Ywatermark :info="'蓝色兄弟'"></Ywatermark>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
line: ""
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.line = options.src
|
|
// this.line = "https://mp.weixin.qq.com"
|
|
// var href = options.src
|
|
// window.open(href, '_blank')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|