Chore: Hover color for status dropdown (#1906)

This commit is contained in:
Sivin Varghese
2021-03-20 13:08:56 +05:30
committed by GitHub
parent 6afa1fb556
commit e289106c5b
9 changed files with 190 additions and 149 deletions

View File

@@ -0,0 +1,21 @@
<template>
<ul
class="dropdown menu vertical"
:class="[placement && `dropdown--${placement}`]"
>
<slot></slot>
</ul>
</template>
<script>
export default {
name: 'WootDropdownMenu',
componentName: 'WootDropdownMenu',
props: {
placement: {
type: String,
default: 'top',
},
},
};
</script>