jiangchengfeiyi-xiaochengxu/pages/activity/activityHome/activityHome.vue

17 lines
269 B
Vue
Raw Normal View History

2025-03-09 10:55:38 +00:00
<template>
2025-03-19 07:16:09 +00:00
<web-view :src="url"></web-view>
2025-03-09 10:55:38 +00:00
</template>
<script setup lang="ts">
2025-03-19 07:16:09 +00:00
import {ref} from 'vue'
import { onLoad } from "@dcloudio/uni-app";
const url = ref('')
onLoad((options) => {
url.value = options.url
})
2025-03-09 10:55:38 +00:00
</script>
<style lang="scss">
</style>