27 lines
424 B
Vue
27 lines
424 B
Vue
|
<docs>
|
|||
|
---
|
|||
|
order: 1
|
|||
|
title:
|
|||
|
zh-CN: 标准样式
|
|||
|
en-US: Basic Page Header
|
|||
|
---
|
|||
|
|
|||
|
## zh-CN
|
|||
|
|
|||
|
标准页头,适合使用在需要简单描述的场景。
|
|||
|
|
|||
|
## en-US
|
|||
|
|
|||
|
Standard header, suitable for use in scenarios that require a brief description.
|
|||
|
|
|||
|
</docs>
|
|||
|
|
|||
|
<template>
|
|||
|
<a-page-header
|
|||
|
style="border: 1px solid rgb(235, 237, 240)"
|
|||
|
title="Title"
|
|||
|
sub-title="This is a subtitle"
|
|||
|
@back="() => null"
|
|||
|
/>
|
|||
|
</template>
|