<template>
  <div class="rbcInputControl">
    <Input v-model="attr.row[attr.field]"/>
  </div>
</template>
<script>
export default {
  data() {
    return {
      
    };
  },
  props: {
    attr:{
      type:Object,
      default:()=>{}
    }
  },
  watch: {},
  computed: {},
  methods: {
   
  },
  mounted() {},
  created() {},
  beforeDestroy() {},
};
</script>
<style lang="less" scoped>

</style>