该组件为超链接组件,在不同平台有不同表现形式:
plus
环境打开内置浏览器window.open
打开链接App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
href
设置打开的链接,text
设置显示的内容<template>
<u-link href="https://uviewui.com/" text="打开uView UI文档" @click="click"></u-link>
</template>
<script>
export default {
methods: {
click() {
console.log('click');
}
}
}
</script>
copy
通过under-line
设置是否显示链接的下划线
<template>
<u-link href="https://uviewui.com/" text="打开uView UI文档" :under-line="true"></u-link>
</template>
copy
color
设置文字颜色line-color
设置下划线颜色<template>
<u-link href="https://uviewui.com/" text="打开uView UI文档" color="#19be6b" line-color="#19be6b"></u-link>
</template>