Test.vue 563 Bytes
<template>
  <el-button @click="onClick">{{desc || '-'}}</el-button>
</template>
<script>

export default {
  props: {
    row: {
      type: Object
    },
    column: {
      type: Object
    },
    index: {
      type: String
    },
    desc: {
      type: String
    }
  },

  data: () => ({

  }),

  created() {

  },
  methods: {
    onClick(){
      console.log('row',this.row);
      console.log('column',this.column);
      console.log('index',this.index);
      console.log('desc',this.desc);
    }
  }
}
</script>

<style scoped lang='scss'>

</style>