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>
|