wujingjing
2025-03-04 ce5d4a0d224aaab33b4d8ddd7b4af170882d406e
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>