Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/link #1863

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/mobile/api/link.en-US.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Link
description: Links are used to start a new task or jump to a new page.

spline: base
isComponent: true
toc: false
---


### 01 Component Type

{{ base }}

### 02 Component Status

{{ status }}
17 changes: 17 additions & 0 deletions docs/mobile/api/link.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Link 链接
description: 用于开启一个任务或跳转一个新页面。
spline: base
isComponent: true
toc: false
---

### 01 组件类型


{{ base }}

### 02 组件状态


{{ status }}
2 changes: 1 addition & 1 deletion style/mobile/components/_index.less
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@

@import "./input/v2/_index.less";

@import "./link/_index.less"; // 新组件
@import "./link/v2/_index.less"; // 新组件

@import "./loading/v2/_index.less";

Expand Down
1 change: 1 addition & 0 deletions style/mobile/components/link/v2/_var.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// 状态色 - 默认色
@import "../../../base.less";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_index已引,_var文件不需要引入了,


@link-default-color: var(--td-link-default-color, @text-color-primary); // default 主题默认态颜色
@link-default-active-color: var(--td-link-default-active-color, @brand-color-active); // default 主题激活态颜色
Expand Down
Loading