封装看板跳转页面

This commit is contained in:
2024-08-26 09:56:43 +08:00
parent 6705e5ef98
commit 02d3e63121
14 changed files with 410 additions and 63 deletions

View File

@@ -1,19 +1,18 @@
<template>
<view class="container">
<my-header></my-header>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
import MyHeader from '@/components/MyHeader.vue'
export default {
components: {
MyHeader
},
data() {
return {
url: ''
};
},
onLoad (options) {
this.url = options.url
}
}
</script>