diff --git a/src/utils/myUtils/mixins/infoDialog.js b/src/utils/myUtils/mixins/infoDialog.js index ec948fd..4c492f3 100644 --- a/src/utils/myUtils/mixins/infoDialog.js +++ b/src/utils/myUtils/mixins/infoDialog.js @@ -1,20 +1,20 @@ const infoDialog = { - props: { - isShowInfo: { - type: Boolean, - default: true, - }, - // title: '', - dataInfo: { - type: Object, - dataInfo:{} - } - }, - methods:{ - close() { - this.$emit("close"); - } - } + props: { + isShowInfo: { + type: Boolean, + default: true + }, + // title: '', + dataInfo: { + type: Object, + dataInfo: {} + } + }, + methods: { + close() { + this.$emit('close') + } + } } -export { infoDialog } \ No newline at end of file +export { infoDialog }