frontend_h5/treegitee/pages/outline/index.vue

26 lines
391 B
Vue
Raw Permalink Normal View History

2024-06-17 15:25:46 +08:00
<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>