Files
sk_fems_ui/components/common/button/ActionButtons.vue
Hoang Xuan Mai/(Hoang Xuan Mai)/현장대리인/SK 8cadade514 fix bug 18 33 34
2025-08-05 15:00:22 +07:00

45 lines
829 B
Vue

<template>
<div class="d-flex flex-column justify-center align-center" style="gap: 12px">
<a-button @click="btnActionsFnc('removeRightToLeft')" type="primary" ghost :icon="icons.remove" >
</a-button>
<!--<v-btn
icon
tile
:ripple="false"
class="mt-2"
@click="btnActionsFnc('removeRightToLeft')"
>
<v-icon>mdi-chevron-left</v-icon>
</v-btn> -->
<a-button @click="btnActionsFnc('addLeftToRight')" type="primary" ghost icon="down">
</a-button>
</div>
</template>
<script>
export default {
props: {
parentPrgmId: {
type: String,
require: true,
},
leftGridName: {
type: String,
require: true,
},
rightGridName: {
type: String,
required: true,
},
btnActionsFnc: {
type: Function,
required: true,
},
},
computed: {},
data() {
return {};
},
};
</script>