Files
system/components/menu/MenuAction.vue
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

14 lines
383 B
Vue

<template>
<a class="mr-3" @click="$emit('edit')">
<SvgIcon v-bind="{name: 'pen1.svg', type: 'dark', size: 16}"></SvgIcon>
</a>
<a @click="remove()">
<SvgIcon v-bind="{name: 'bin1.svg', type: 'dark', size: 16}"></SvgIcon>
</a>
</template>
<script setup>
const emit = defineEmits(['edit', 'remove'])
const remove = function() {
emit('remove')
}
</script>