Newer
Older
smartKitchenFront / src / utils / myUtils / mixins / infoDialog.js
Stephanie on 11 Nov 2022 270 bytes feat<*>: 格式化代码
const infoDialog = {
  props: {
    isShowInfo: {
      type: Boolean,
      default: true
    },
    // title: '',
    dataInfo: {
      type: Object,
      dataInfo: {}
    }
  },
  methods: {
    close() {
      this.$emit('close')
    }
  }
}

export { infoDialog }