When to Use
- Navigate to another page within the current app.
- Navigate to an external page.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Reference for the Link component. Learn how to configure the link address, open behavior, and other attributes to enable hyperlink navigation between pages.
| Attribute | Description | Type | Default |
|---|---|---|---|
content | Sets the link text content. | string | 'This is a link' |
isBlank | Whether to open the link in a new page. | boolean | false |
page | The UUID of the internal page. Takes effect when the type attribute is set to page. | string | - |
params | URL query parameters, typically used to pass parameters during page navigation. | Record<string, string> | - |
textOverflow | Truncates the text to a single line. When enabled, text exceeding one line is displayed with an ellipsis, and the title attribute of the HTML tag is set accordingly. | boolean | false |
type | The link type. page: internal page; url: external link. | 'page' | 'url' | 'page' |
url | The link address. Click the link to navigate to the corresponding page. Takes effect when the type attribute is set to url. | string | - |
Was this page helpful?