jy-safe-app/pages/my/subPages/webView.vue

19 lines
302 B
Vue
Raw Permalink Normal View History

2025-10-14 15:17:30 +08:00
<template>
<view class="container">
<!-- src 路径为 static 目录下的相对路径 -->
<web-view :src="htmlPath"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
htmlPath: ''
}
},
onLoad(option){
this.htmlPath = option.htmlPath
}
}
</script>