sk_fems_ui commit
This commit is contained in:
17
components/common/button/BtnSearch.vue
Normal file
17
components/common/button/BtnSearch.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<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>
|
Reference in New Issue
Block a user