File size: 1,650 Bytes
71174bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | <template>
<!-- direct action in main-dropdown group -->
<MenuActionLink
v-if="isAction(menuData)"
:isTopLevel="false"
:menuData="menuData"
/>
<span v-else>
<!-- It's a submenu dropdown that opens to the right -->
<li>
<div class="dropend">
<a
class="dropdown-item dropdown-toggle pt-0"
data-bs-toggle="dropdown"
aria-expanded="false"
style="cursor: pointer; padding-bottom:2px;"
:id="'menu2-' + idSlug"
>
<!-- <div style="width:100px; float:left;">{{menuData.text}}</div> -->
{{ menuData.text }}
</a>
<ul class="dropdown-menu">
<MenuActionLink
v-for="item in getItems(menuData)"
v-bind:key="item.text"
:isTopLevel="false"
:menuData="item"
/>
</ul>
</div>
</li>
</span>
</template>
<script lang="ts">
import { Options } from "vue-class-component";
import { Prop } from "vue-property-decorator";
import MenuActionLink from "./MenuActionLink.vue";
import { IMenuEntry, MenuLevelParent } from "./Menu";
import { slugify } from "@/Core/Utils/StringUtils";
/**
* MenuLevel3 component
*/
@Options({
components: {
MenuActionLink,
},
})
export default class MenuLevel3 extends MenuLevelParent {
@Prop() menuData!: IMenuEntry;
/**
* Gets a slug for the menu text.
*
* @returns {string} The slug.
*/
get idSlug(): string {
return slugify(this.menuData.text as string);
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
</style>
|