> ## Documentation Index
> Fetch the complete documentation index at: https://help.dingtalk.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Link

> Reference for the Link component. Learn how to configure the link address, open behavior, and other attributes to enable hyperlink navigation between pages.

A hyperlink used to navigate to a new page.

## When to Use

* Navigate to another page within the current app.
* Navigate to an external page.

## Component Example

## Component Properties

| 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`                 | -                  |
