Files
cmgd-mini-app/pages/webview/index.vue-
2026-01-05 12:47:14 +08:00

22 lines
275 B
Plaintext

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