shangfutong-ui/jeepay-ui-uapp-agent/pageApply/components/contract.vue

20 lines
263 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script setup>
import { onLoad } from '@dcloudio/uni-app'
import { ref } from 'vue'
let url = ref('')
onLoad((option) => {
url.value = option.url
})
</script>
<style scoped>
</style>