Files
sk_fems_ems/components/common/button/BtnSearch.vue
2025-07-12 15:13:46 +09:00

18 lines
336 B
Vue

<template>
<v-btn :ripple="false" @click="getSearch('prev')">조회</v-btn>
</template>
<script>
import { mapMutations } from 'vuex';
export default {
methods: {
...mapMutations({ setPageData: 'setPageData' }),
getSearch() {
this.setPageData({ isFind: true });
},
},
};
</script>
<style scoped lang="scss" scoped></style>