Newer
Older
smartKitchenFront / src / utils / myUtils / mixins / infoDialog.js
Stephanie on 14 Nov 2022 271 bytes feat<*>: 设备SN码列表修改
const infoDialog = {
  props: {
    isShowInfo: {
      type: Boolean,
      default: false
    },
    // title: '',
    dataInfo: {
      type: Object,
      dataInfo: {}
    }
  },
  methods: {
    close() {
      this.$emit('close')
    }
  }
}

export { infoDialog }