ant-design-vue/components/breadcrumb/demo/index.vue

22 lines
304 B
Vue
Raw Normal View History

2018-01-15 10:52:16 +08:00
<template>
<div>
2018-01-16 11:13:22 +08:00
<Basic />
2018-01-15 10:52:16 +08:00
<br>
2018-01-16 11:13:22 +08:00
<withIcon />
2018-01-15 10:52:16 +08:00
<br>
2018-01-16 11:13:22 +08:00
<separator />
2018-01-15 10:52:16 +08:00
</div>
</template>
<script>
2018-01-16 11:13:22 +08:00
import Basic from './basic'
import withIcon from './withIcon'
import separator from './separator'
2018-01-15 10:52:16 +08:00
export default {
components: {
2018-01-16 11:13:22 +08:00
Basic,
withIcon,
separator,
2018-01-15 10:52:16 +08:00
},
}
</script>