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.
26 lines
417 B
26 lines
417 B
2 years ago
|
<template>
|
||
|
<div>
|
||
|
<cpt-bread @tap="clickBreadItem" v-if="breadList.length > 1" :bread-list="breadList" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import cptBread from "@/views/dataBoard/renfang/cpts/bread";
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
breadList: [],
|
||
|
};
|
||
|
},
|
||
|
components: {
|
||
|
cptBread,
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {
|
||
|
clickBreadItem(item) {},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss"></style>
|