summaryrefslogtreecommitdiffstats
path: root/settings/src/components/popoverMenu.vue
blob: 92f62c5090db1fac39c90e9042285894ad5d35bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
	<ul>
		<popover-item v-for="(item, key) in menu" :item="item" :key="key" />
	</ul>
</template>


<script>
import popoverItem from './popoverMenu/popoverItem';

export default {
	name: 'popoverMenu',
	props: ['menu'],
	components: {
		popoverItem
	}
}
</script>