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.
ant-design-vue/components/tabs/demo/index.vue

79 lines
1.9 KiB

7 years ago
<script>
import Basic from './basic';
import CardTop from './card-top';
import Card from './card';
import CustomAddTrigger from './custom-add-trigger';
import Disabled from './disabled';
import EditableCard from './editable-card';
import Extra from './extra';
import Icon from './icon';
import Position from './position';
import Size from './size';
import Slide from './slide';
import CustomTabBar from './custom-tab-bar';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
const md = {
cn: `# Tabs 标签页
选项卡切换组件
## 何时使用
提供平级的区域将大块内容进行收纳和展现保持界面整洁
Ant Design 依次提供了三级选项卡分别用于不同的场景
- 卡片式的页签提供可关闭的样式常用于容器顶部
- 标准线条式页签用于容器内部的主功能切换这是最常用的 Tabs
7 years ago
- [RadioButton](/ant-design/components/radio-cn/) 使
## 代码演示`,
us: `# Tabs
Tabs make it easy to switch between different views.
### When To Use
Ant Design has 3 types of Tabs for different situations.
- Card Tabs: for managing too many closeable views.
- Normal Tabs: for functional aspects of a page.
7 years ago
- [RadioButton](/ant-design/components/radio/): for secondary tabs.
## Examples `,
};
7 years ago
export default {
7 years ago
category: 'Components',
subtitle: '标签页',
type: 'Data Display',
title: 'Tabs',
cols: 1,
render () {
return (
<div>
<md cn={md.cn} us={md.us}/>
<Basic />
<Disabled />
<Icon />
<Slide/>
<Extra />
<Size />
<Position />
<Card />
<EditableCard />
<CardTop />
<CustomAddTrigger />
<CustomTabBar />
<api>
<template slot='cn'>
<CN/>
</template>
<US/>
</api>
</div>
);
7 years ago
},
};
7 years ago
</script>