h5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
300 B

<template>
<view @click="openLink" class="break-all text-blue-400 text-xs my-1"> {{ link }} </view>
</template>
<script setup>
const props = defineProps({ link: String });
function openLink() {
uni.navigateTo({
url: `/pages/detailWebview/detailWebview?url=${props.link}`,
});
}
</script>