Update TemplateDoc.vue
parent
d3ce134ff1
commit
14eca0cc80
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>
|
<p>
|
||||||
Menu offers item customization with the <i>item</i> template that receives the menuitem instance from the model as a parameter. The submenu header has its own <i>submenuheader</i> template, additional slots named <i>start</i> and
|
Menu offers item customization with the <i>item</i> template that receives the menuitem instance from the model as a parameter. The submenu header has its own <i>submenuitem</i> template, additional slots named <i>start</i> and
|
||||||
<i>end</i> are provided to embed content before or after the menu.
|
<i>end</i> are provided to embed content before or after the menu.
|
||||||
</p>
|
</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #submenuheader="{ item }">
|
<template #submenuitem="{ item }">
|
||||||
<span class="text-primary font-bold">{{ item.label }}</span>
|
<span class="text-primary font-bold">{{ item.label }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #item="{ item, props }">
|
<template #item="{ item, props }">
|
||||||
|
@ -106,7 +106,7 @@ export default {
|
||||||
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #submenuheader="{ item }">
|
<template #submenuitem="{ item }">
|
||||||
<span class="text-primary font-bold">{{ item.label }}</span>
|
<span class="text-primary font-bold">{{ item.label }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #item="{ item, props }">
|
<template #item="{ item, props }">
|
||||||
|
@ -147,7 +147,7 @@ export default {
|
||||||
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #submenuheader="{ item }">
|
<template #submenuitem="{ item }">
|
||||||
<span class="text-primary font-bold">{{ item.label }}</span>
|
<span class="text-primary font-bold">{{ item.label }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #item="{ item, props }">
|
<template #item="{ item, props }">
|
||||||
|
@ -242,7 +242,7 @@ export default {
|
||||||
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
<span class="font-medium text-xl font-semibold">PRIME<span class="text-primary">APP</span></span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #submenuheader="{ item }">
|
<template #submenuitem="{ item }">
|
||||||
<span class="text-primary font-bold">{{ item.label }}</span>
|
<span class="text-primary font-bold">{{ item.label }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #item="{ item, props }">
|
<template #item="{ item, props }">
|
||||||
|
|
Loading…
Reference in New Issue