summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src/components/popoverMenu.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/updatenotification/src/components/popoverMenu.vue')
-rw-r--r--apps/updatenotification/src/components/popoverMenu.vue18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/updatenotification/src/components/popoverMenu.vue b/apps/updatenotification/src/components/popoverMenu.vue
new file mode 100644
index 00000000000..92f62c5090d
--- /dev/null
+++ b/apps/updatenotification/src/components/popoverMenu.vue
@@ -0,0 +1,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>