skillbox/client/src/components/WidgetPopover.vue

26 lines
413 B
Vue

<template>
<div
v-click-outside="hidePopover"
:class="{'widget-popover--mobile': mobile}"
class="widget-popover">
<ul class="widget-popover__links popover-links">
<slot/>
</ul>
</div>
</template>
<script>
export default {
props: ['mobile'],
methods: {
hidePopover() {
this.$emit('hide-me');
},
}
}
</script>
<style scoped lang="scss">
</style>