mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
22 lines
304 B
Vue
22 lines
304 B
Vue
<template>
|
|
<div>
|
|
<Basic />
|
|
<br>
|
|
<withIcon />
|
|
<br>
|
|
<separator />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Basic from './basic'
|
|
import withIcon from './withIcon'
|
|
import separator from './separator'
|
|
export default {
|
|
components: {
|
|
Basic,
|
|
withIcon,
|
|
separator,
|
|
},
|
|
}
|
|
</script>
|