GterForumWeB/src/components/PlateNavigation.vue

32 lines
625 B
Vue
Raw Normal View History

<!-- 板块导航 头部 点击板块后的头部导航 -->
<template>
<div class="path-box">
<div>论坛</div>
<span class="path-slash">/</span>
<div class="oneEllipsis">{{ stairname }}</div>
<span class="path-slash">/</span>
<div class="oneEllipsis">{{ subsectionsname }}</div>
</div>
</template>
<script>
export default {
name: 'PlateNavigation',
data() {
return {
};
},
props: ["stairname", "subsectionsname"],
mounted() {
},
methods: {
},
};
</script>
<style lang="scss" scoped></style>