mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-15 04:18:16 +08:00
26 lines
429 B
Vue
26 lines
429 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
menuList?: unknown[]
|
|
itemProps?: boolean
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<IconBtn>
|
|
<VIcon icon="mdi-dots-vertical" />
|
|
|
|
<VMenu
|
|
v-if="props.menuList"
|
|
activator="parent"
|
|
close-on-content-click
|
|
>
|
|
<VList
|
|
:items="props.menuList"
|
|
:item-props="props.itemProps"
|
|
/>
|
|
</VMenu>
|
|
</IconBtn>
|
|
</template>
|