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/index.js

98 lines
2.4 KiB

7 years ago
import Button from './button'
const ButtonGroup = Button.Group
export { Button, ButtonGroup }
7 years ago
7 years ago
import Checkbox from './checkbox'
const CheckboxGroup = Checkbox.Group
export { Checkbox, CheckboxGroup }
7 years ago
export { default as Icon } from './icon'
7 years ago
7 years ago
import Radio from './radio'
const RadioGroup = Radio.Group
const RadioButton = Radio.Button
export { Radio, RadioGroup, RadioButton }
export { default as Grid } from './grid'
7 years ago
export { default as Rate } from './rate'
7 years ago
export { default as Tooltip } from './tooltip'
7 years ago
export { default as Pagination } from './pagination'
7 years ago
export { default as Row } from './grid/Row'
7 years ago
export { default as Col } from './grid/Col'
7 years ago
export { default as Tag } from './tag'
export { default as Avatar } from './avatar'
export { default as Badge } from './badge'
7 years ago
export { default as Tabs } from './tabs'
7 years ago
7 years ago
import Input from './input'
const InputGroup = Input.Group
const InputSearch = Input.Search
const InputTextArea = Input.TextArea
const Textarea = InputTextArea
export { Input, InputGroup, InputSearch, InputTextArea, Textarea }
7 years ago
export { default as Breadcrumb } from './breadcrumb'
7 years ago
7 years ago
export { default as Popover } from './popover'
7 years ago
export { default as Popconfirm } from './popconfirm'
7 years ago
7 years ago
import Menu from './menu'
const MenuItem = Menu.Item
const SubMenu = Menu.SubMenu
const MenuDivider = Menu.Divider
const MenuItemGroup = Menu.ItemGroup
export { Menu, MenuItem, SubMenu, MenuDivider, MenuItemGroup }
7 years ago
export { default as Card } from './card'
7 years ago
import Dropdown from './dropdown'
const DropdownButton = Dropdown.Button
export { Dropdown, DropdownButton }
7 years ago
export { default as Divider } from './divider'
import Collapse from './collapse'
const CollapsePanel = Collapse.Panel
export { Collapse, CollapsePanel }
7 years ago
import notification from './notification'
7 years ago
import message from './message'
7 years ago
7 years ago
export { default as Spin } from './spin'
import Select from './select'
const SelectOption = Select.Option
const SelectOptGroup = Select.OptGroup
export { Select, SelectOption, SelectOptGroup }
export { default as Switch } from './switch'
export { default as LocaleProvider } from './locale-provider'
7 years ago
export { default as AutoComplete } from './auto-complete'
7 years ago
export { default as Affix } from './affix'
7 years ago
export { default as Cascader } from './cascader'
7 years ago
export { default as BackTop } from './back-top'
7 years ago
export { default as Modal } from './modal'
export { default as Alert } from './alert'
7 years ago
const api = {
notification,
message,
}
export { api }