cashier_app/pages/adH5/adH5.vue

16 lines
293 B
Vue

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