Files
yuxingu-Miniprogram-dev/pages/webview-page/webview-page.vue
T
jackyu66gitandCursor 69d9825b63 feat: 愈心魔方 Tab 与首页入口改版
新增愈心魔方 WebView Tab、首页魔方横幅与四宫格入口(心理测评/咨询/情绪压力评估/就医保障);H5 地址配置于 yxgConfig.js。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-25 00:41:14 +08:00

14 lines
198 B
Vue

<template>
<web-view :src="url"></web-view>
</template>
<script setup>
const url = ref('')
onLoad((options) => {
if (options.url) {
url.value = decodeURIComponent(options.url)
}
})
</script>