updated rimo type map

This commit is contained in:
2025-09-17 14:25:45 +02:00
parent 495130325b
commit afe533bf4f
7 changed files with 81 additions and 43 deletions
@@ -6,8 +6,9 @@ Vue.component('tt-page-title', {
<div class="page-title-box">
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item" v-for="item in path" :key="item.text">
<a :href="item.href">{{ item.text }}</a>
<li v-for="(item, index) in path" :key="item.text">
<i v-if="index > 0" class="fa fa-chevron-right mx-1"></i>
<a :href="item.href">{{ item.text }}</a>
</li>
</ol>
</div>