UNPKG

@wanghonggan/uv-ui

Version:

uv-ui 破釜沉舟之兼容vue3+2、nvue、app、h5、小程序等多端基于uni-app和uView2.x的生态框架,支持单独导入,开箱即用,利剑出击。

42 lines (41 loc) 813 B
import { getPropsByKey } from "../../libs/config/config"; export default { props: { // 文字颜色 color: { type: String, default: '' }, // 字体大小,单位px fontSize: { type: [String, Number], default: 14 }, // 是否显示下划线 underLine: { type: Boolean, default: false }, // 要跳转的链接 href: { type: String, default: '' }, // 小程序中复制到粘贴板的提示语 mpTips: { type: String, default: '链接已复制,请在浏览器打开' }, // 下划线颜色 lineColor: { type: String, default: '' }, // 超链接的问题,不使用slot形式传入,是因为nvue下无法修改颜色 text: { type: String, default: '' }, ...getPropsByKey('link') } }