jiangchengfeiyi-xiaochengxu/pages/activity/activityHome/activityHome.vue
2025-03-19 15:16:09 +08:00

17 lines
269 B
Vue

<template>
<web-view :src="url"></web-view>
</template>
<script setup lang="ts">
import {ref} from 'vue'
import { onLoad } from "@dcloudio/uni-app";
const url = ref('')
onLoad((options) => {
url.value = options.url
})
</script>
<style lang="scss">
</style>