vue 에서 트 리 표 의 실현 코드 를 편집 할 수 있 습 니 다.

2845 단어 vue트 리 표
vue 에서 트 리 표를 편집 할 수 있 는 코드 는 다음 과 같 습 니 다.
html 코드

 <template>
	<el-table
    :data="datatree"
    row-key="id"
    :tree-props="{children: 'children'}"
   >
    <el-table-column label="  " border>
        <template slot-scope="scope">
          <el-input placeholder="     " v-show="scope.row.show" v-model="scope.row.label"></el-input>
          <span v-show="!scope.row.show">{{scope.row.label}}</span>
        </template>
      </el-table-column>
      <el-table-column label="  ">
        <template slot-scope="scope">
          <el-button @click="scope.row.show =true" >  </el-button>
          <el-button @click="scope.row.show =false">  </el-button>
        </template>
      </el-table-column>
   </el-table>
 </template>
js 코드

<script>
export default {
	data(){
  	return {
  	datatree: [{
     id: 1,
     label: '  ',
     show:false,
     children: [{
      id: 4,
      label: '  ',
      show:false,
      children: [{
       id: 9,
       label: '   ',
       show:false
      }, {
       id: 10,
       label: '   ',
       show:false
      }]
     }]
    }, {
     id: 2,
     label: '  ',
     show:false,
     children: [{
      id: 5,
      label: '  ',
      show:false
     }, {
      id: 6,
      label: '  ',
      show:false
     }]
    }, {
     id: 3,
     label: '  ',
     show:false,
     children: [{
      id: 7,
      label: '   ',
      show:false
     }, {
      id: 8,
      label: '  ',
      show:false
     }]
    }],
    defaultProps: {
     children: 'children',
     label: 'label',
     show:'show'
    }
  }
 }
}
효과 도
在这里插入图片描述
간단 한 편집 가능 한 트 리 표 가 나 타 났 다.
input 상자 가 너무 커서 스스로 설정 해 주세요.
在这里插入图片描述
在这里插入图片描述
vue 에서 트 리 표를 편집 할 수 있 는 실현 코드 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 vue 트 리 표 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 바 랍 니 다!

좋은 웹페이지 즐겨찾기