亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

vue中可編輯樹(shù)狀表格的實(shí)現(xiàn)代碼

 更新時(shí)間:2020年10月31日 14:52:17   作者:等櫻花的龍貓  
這篇文章主要介紹了vue中可編輯樹(shù)狀表格的實(shí)現(xiàn)代碼,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

vue中可編輯樹(shù)狀表格的代碼如下所示:

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="請(qǐng)輸入內(nèi)容" 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: '蘋(píng)果',
      show:false,
      children: [{
       id: 9,
       label: '蘋(píng)果皮',
       show:false
      }, {
       id: 10,
       label: '蘋(píng)果仔',
       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'
    }
  }
 }
}

效果圖

在這里插入圖片描述

一個(gè)簡(jiǎn)單的可編輯樹(shù)狀表格就出現(xiàn)了
嫌input框太大自己設(shè)置一下

在這里插入圖片描述
在這里插入圖片描述

到此這篇關(guān)于vue中可編輯樹(shù)狀表格的實(shí)現(xiàn)代碼的文章就介紹到這了,更多相關(guān)vue樹(shù)狀表格內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論