When to Use
- Navigate to another page within the current app.
- Redirect 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.
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.
| 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 | - |
Was this page helpful?