uniapp component-uni-link hyperlink

 Example 1

<template>
	<view>
		<view>
			基础样式:<uni-link href="https://blog.csdn.net/qq_40323256" text="https://blog.csdn.net/qq_40323256" :showUnderLine="false" ></uni-link>
		</view>
		<view style="padding: 15px; background-color: #ffffff;">
			自定义样式:<uni-link href="https://blog.csdn.net/qq_4032325" text="李疆的博客:https://blog.csdn.net/qq_4032325" showUnderLine="false" color="#0000FF" copyTips="这是复制时显示的提示语" :showUnderLine="true" ></uni-link>
		</view>
	</view>
</template>

Effect picture

Guess you like

Origin blog.csdn.net/qq_40323256/article/details/114240488