You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
<docs>
|
|
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 文本与超链接组件
|
|
en-US: Text and Link Component
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
内置不同样式的文本以及超链接组件。
|
|
|
|
## en-US
|
|
|
|
Provides multiple types of text and link.
|
|
</docs>
|
|
<template>
|
|
<a-space direction="vertical">
|
|
<a-typography-text>Ant Design Vue (default)</a-typography-text>
|
|
<a-typography-text type="secondary">Ant Design Vue (secondary)</a-typography-text>
|
|
<a-typography-text type="success">Ant Design Vue (success)</a-typography-text>
|
|
<a-typography-text type="warning">Ant Design Vue (warning)</a-typography-text>
|
|
<a-typography-text type="danger">Ant Design Vue (danger)</a-typography-text>
|
|
<a-typography-text disabled>Ant Design Vue (disabled)</a-typography-text>
|
|
<a-typography-text mark>Ant Design Vue (mark)</a-typography-text>
|
|
<a-typography-text code>Ant Design Vue (code)</a-typography-text>
|
|
<a-typography-text keyboard>Ant Design Vue (keyboard)</a-typography-text>
|
|
<a-typography-text underline>Ant Design Vue (underline)</a-typography-text>
|
|
<a-typography-text delete>Ant Design Vue (delete)</a-typography-text>
|
|
<a-typography-text strong>Ant Design Vue (strong)</a-typography-text>
|
|
<a-typography-link href="https://antdv.com" target="_blank">
|
|
Ant Design Vue (Link)
|
|
</a-typography-link>
|
|
</a-space>
|
|
</template>
|