38 lines
579 B
Vue
38 lines
579 B
Vue
<template>
|
|
<div class="tableInner">
|
|
<el-input v-model="list[itemProp]" @blur="changeInput" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'InputArea',
|
|
props: {
|
|
injectData: {
|
|
type: Object,
|
|
default: () => ({})
|
|
},
|
|
itemProp: {
|
|
type: String
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
list: this.injectData
|
|
}
|
|
},
|
|
methods: {
|
|
changeInput() {
|
|
console.log(this.list)
|
|
this.$emit('emitData', this.list)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
.tableInner .el-input__inner {
|
|
border: none;
|
|
padding: 0;
|
|
height: 33px;
|
|
}
|
|
</style>
|