textAreaControl.vue 486 Bytes
Newer Older
1 2
<template>
  <div class="rbcInputControl">
qiaoyanqi committed
3
    <Input v-model="attr.row[attr.field]" type="textarea" :disabled="disabled"/>
4 5 6 7 8 9 10 11 12 13 14 15 16
  </div>
</template>
<script>
export default {
  data() {
    return {
      
    };
  },
  props: {
    attr:{
      type:Object,
      default:()=>{}
qiaoyanqi committed
17 18 19
    },
    disabled: {
      require: false
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
    }
  },
  watch: {},
  computed: {},
  methods: {
   
  },
  mounted() {},
  created() {},
  beforeDestroy() {},
};
</script>
<style lang="less" scoped>

</style>