pleroma-fe/src/components/lists_menu/lists_menu_content.vue

13 lines
211 B
Vue
Raw Normal View History

2022-08-06 16:26:43 +02:00
<template>
2022-08-12 00:27:09 +02:00
<ul>
<NavigationEntry
v-for="item in lists"
:key="item.name"
:show-pin="showPin"
:item="item"
/>
</ul>
2022-08-06 16:26:43 +02:00
</template>
<script src="./lists_menu_content.js"></script>