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.
|
|
|
<template>
|
|
|
|
<a-dropdown class="select-none color-transition" :trigger="['click']">
|
|
|
|
<MaterialSymbolsTranslate v-bind="$attrs" class="md:text-xl cursor-pointer nc-menu-translate" />
|
|
|
|
|
|
|
|
<template #overlay>
|
|
|
|
<GeneralLanguageMenu />
|
|
|
|
</template>
|
|
|
|
</a-dropdown>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
:deep(.ant-dropdown-menu-item-group-list) {
|
|
|
|
@apply !mx-0;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.ant-dropdown-menu-item-group-title) {
|
|
|
|
@apply border-b-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.ant-dropdown-menu-item-group-list) {
|
|
|
|
@apply m-0;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.ant-dropdown-menu-item) {
|
|
|
|
@apply !py-0 active:(ring ring-pink-500);
|
|
|
|
}
|
|
|
|
</style>
|