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.
14 lines
302 B
14 lines
302 B
4 years ago
|
<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/deliverWebview/deliverWebview?url=${props.link}`,
|
||
|
});
|
||
|
}
|
||
|
</script>
|