ant-design-vue/components/breadcrumb/demo/index.vue
wangxueliang ce13c6db19 fix css
2018-01-16 11:13:22 +08:00

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>