siteFront/pages/webview/index.vue

24 lines
394 B
Vue
Raw Normal View History

2024-11-05 10:07:15 +08:00
<template>
<view class="outer_link">
<web-view :src="outerLink"></web-view>
</view>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { onLoad } from "@dcloudio/uni-app";
const outerLink = ref('')
const getLink = (url:string) => {
outerLink.value = url
}
onLoad((option:any) => {
getLink(option.url)
})
</script>
<style lang="scss" scoped>
</style>