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