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.
18 lines
364 B
18 lines
364 B
// TODO: 依赖组件开发中
|
|
<template>
|
|
<div>
|
|
<AntButton type="primary">Primary</AntButton>
|
|
<AntButton>Default</AntButton>
|
|
<AntButton type="dashed">Dashed</AntButton>
|
|
<AntButton type="danger">Danger</AntButton>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { Button } from 'antd'
|
|
export default {
|
|
components: {
|
|
AntButton: Button,
|
|
},
|
|
}
|
|
</script>
|