wujingjing
2024-11-06 768a63bdae68f9440d4b7f5768c3ea7f9308f2ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
    <vue-file-toolbar-menu v-bind="$attrs" />
</template>
 
<script setup lang="ts">
import VueFileToolbarMenu from 'vue-file-toolbar-menu';
</script>
<style scoped lang="scss">
:deep(.bar-button) {
    cursor: pointer;
    .bar-menu {
        cursor: default;
    }
    .bar-menu-item {
        cursor: pointer;
    }
 
    &:hover {
        color: initial !important;
        background-color: #e0e1e1 !important;
    }
}
</style>