Newer
Older
smartKitchenFront / src / utils / myUtils / mixins / infoDialog.js
liuyangyingjie on 26 Oct 2022 331 bytes first commit
const infoDialog = {
    props: {
        isShowInfo: {
          type: Boolean,
          default: true,
        },
        // title: '',
        dataInfo: {
          type: Object,
          dataInfo:{}
        }
      },
      methods:{
        close() {
          this.$emit("close");
        }
      }
}

export { infoDialog }