mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-09-02 03:03:56 +00:00
23 lines
495 B
Vue
23 lines
495 B
Vue
<template>
|
|
<div v-if="menu_item_list" class="mb-3">
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item" :class="menu.active ? 'active' : ''" v-for="(menu, $index) in menu_item_list" :key="$index">
|
|
<router-link :to="menu.path" tag="button">
|
|
{{ menu.title }}
|
|
</router-link>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['menu_item_list'],
|
|
}
|
|
</script>
|