release v2.0.0 #4
|
@ -1,7 +1,11 @@
|
||||||
yarn run v1.22.10
|
|
||||||
$ /mnt/data/home/thomas/devel/flaschengeist/flaschengeist-frontend/node_modules/.bin/prettier src/components/navigation/EssentialExpansionLink.vue
|
|
||||||
<template>
|
<template>
|
||||||
<q-expansion-item v-if="isGranted(entry)" clickable :label="getTitle(entry)" :icon="entry.icon" expand-separator>
|
<q-expansion-item
|
||||||
|
v-if="isGranted(entry)"
|
||||||
|
clickable
|
||||||
|
:label="getTitle(entry)"
|
||||||
|
:icon="entry.icon"
|
||||||
|
expand-separator
|
||||||
|
>
|
||||||
<q-list class="q-ml-lg">
|
<q-list class="q-ml-lg">
|
||||||
<div v-for="child in entry.children" :key="child.link">
|
<div v-for="child in entry.children" :key="child.link">
|
||||||
<q-item v-if="isGranted(child)" clickable :to="{ name: child.link }">
|
<q-item v-if="isGranted(child)" clickable :to="{ name: child.link }">
|
||||||
|
@ -55,4 +59,3 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
Done in 0.67s.
|
|
||||||
|
|
Loading…
Reference in New Issue