所以computed不管用,
<Table size="small" :columns="projectColumns" :data="projectData" >
<template slot-scope="{ row,index }" slot="projectPrice">
<InputNumber v-model="row.projectPrice" @on-change="projectDataChange(row,index)"/>
</template>
</Table>
projectDataChange(row,index){
this.projectData[index]=row;
this.projectData.splice(0,0)
},