mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
346 B
20 lines
346 B
1 year ago
|
<script lang="ts" setup>
|
||
|
const props = defineProps<{
|
||
|
selectable?: boolean | undefined
|
||
|
}>()
|
||
|
|
||
|
const selectable = computed(() => props.selectable ?? false)
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<a-menu class="nc-menu" :selectable="selectable">
|
||
|
<slot />
|
||
|
</a-menu>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.nc-menu {
|
||
|
@apply bg-white !rounded-md !py-1;
|
||
|
}
|
||
|
</style>
|