17 lines
249 B
Vue
17 lines
249 B
Vue
|
|
<template>
|
||
|
|
<web-view :src="url" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { onLoad } from '@dcloudio/uni-app'
|
||
|
|
import { ref } from 'vue'
|
||
|
|
|
||
|
|
const url = ref('')
|
||
|
|
|
||
|
|
onLoad((options) => {
|
||
|
|
url.value = options.url!
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style></style>
|