restructure/src/components/Bread/index.vue

23 lines
407 B
Vue
Raw Normal View History

2022-05-18 17:35:46 +08:00
<template>
<n-breadcrumb>
<n-breadcrumb-item href="#">
北京总行
</n-breadcrumb-item>
<n-breadcrumb-item href="#">
天津分行
</n-breadcrumb-item>
<n-breadcrumb-item href="#">
平山道支行
</n-breadcrumb-item>
</n-breadcrumb>
</template>
<script>
import { defineComponent } from 'vue'
export default defineComponent({
components: {
}
})
</script>