24 lines
550 B
Vue
24 lines
550 B
Vue
|
<docs>
|
||
|
---
|
||
|
order: 1
|
||
|
title:
|
||
|
zh-CN: 标题组件
|
||
|
en-US: Title Component
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
展示不同级别的标题。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Display title in different level.
|
||
|
</docs>
|
||
|
<template>
|
||
|
<a-typography-title>h1. Ant Design Vue</a-typography-title>
|
||
|
<a-typography-title :level="2">h2. Ant Design Vue</a-typography-title>
|
||
|
<a-typography-title :level="3">h3. Ant Design Vue</a-typography-title>
|
||
|
<a-typography-title :level="4">h4. Ant Design Vue</a-typography-title>
|
||
|
<a-typography-title :level="5">h5. Ant Design Vue</a-typography-title>
|
||
|
</template>
|