123456789101112131415161718192021222324252627282930313233343536373839404142 |
- "use strict";
- const uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
- const props = {
- props: {
- // 文字颜色
- color: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.color
- },
- // 字体大小,单位px
- fontSize: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.fontSize
- },
- // 是否显示下划线
- underLine: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.underLine
- },
- // 要跳转的链接
- href: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.href
- },
- // 小程序中复制到粘贴板的提示语
- mpTips: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.mpTips
- },
- // 下划线颜色
- lineColor: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.lineColor
- },
- // 超链接的问题,不使用slot形式传入,是因为nvue下无法修改颜色
- text: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.link.text
- }
- }
- };
- exports.props = props;
|