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.

38 lines
720 B

<template>
<div class="btns-wrap flex">
<GuipButton type="normal" size="medium" @click="cancelClick">取消</GuipButton>
<GuipButton type="primary" size="medium" @click="confirmClick">保存</GuipButton>
</div>
</template>
<script>
import GuipButton from '@/components/GuipButton.vue';
export default {
name: '',
props: [''],
components: {
GuipButton
},
data(){
return{
}
},
methods:{
cancelClick(){
this.$emit('cancel')
},
confirmClick(){
this.$emit('confirm')
}
}
}
</script>
<style scoped lang="scss">
.btns-wrap{
margin-top: 24px;
justify-content: flex-end;
}
</style>