> ## 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.

# LinkBlock

> Documentation for the LinkBlock component. Learn the attributes and usage of this block-level link container, which can embed content such as images to make an entire area clickable.

A block-level link container that behaves like the Link component but can embed other content such as images.

## When to Use

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

## Component Example

## Component Properties

| Attribute  | Description                                                                                                                        | Type                     | Default  |
| ---------- | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------ | -------- |
| `disabled` | Whether to disable the link block. When disabled, clicking the block does not trigger navigation.                                  | `boolean`                | `false`  |
| `isBlank`  | Whether to open the target 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 values during page navigation.                                                        | `Record<string, string>` | -        |
| `type`     | Link type. `page`: internal page; `url`: external link.                                                                            | `'page' \| 'url'`        | `'page'` |
| `url`      | The link address. Clicking the link redirects to the corresponding page. Takes effect when the **type** attribute is set to `url`. | `string`                 | -        |
