22 lines
275 B
Plaintext
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> |