editDialog.vue
517 Bytes
<template>
<dialogBox title="证明模板" @submitForm="submitForm" width="60%" @closeDialog="closeDialog" v-model="value">
</dialogBox>
</template>
<script>
export default {
components: {
},
props: {
value: { type: Boolean, default: false },
},
data () {
return {
}
},
methods: {
submitForm () {
this.$emit('input', false)
},
closeDialog () {
this.$emit('input', false)
}
}
}
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";
</style>