多维表格
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.

18 lines
443 B

<script setup lang="ts">
import MdiAddIcon from '~icons/mdi/plus-outline'
const emits = defineEmits(['addRow'])
</script>
<template>
<a-tooltip placement="left">
<template #title> {{ $t('activity.addRow') }} </template>
<div class="nc-sidebar-right-item hover:after:bg-primary/75 group">
<MdiAddIcon class="group-hover:(!text-white)" @click="emits('addRow')" />
</div>
</a-tooltip>
</template>
<style scoped></style>