91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue 封裝自定義組件之tabal列表編輯單元格組件實例代碼

發布時間:2020-08-21 14:15:01 來源:腳本之家 閱讀:174 作者:kefe2 欄目:web開發

vue 封裝自定義組件

tabal列表編輯單元格組件

<template>
 <div class="editable-cell">
  <div class="editable-cell-input-wrapper" v-if='editable'>
   <el-input class="editInput" v-model="cellValue" placeholder="請輸入內容" v-loading="editLoading" size="small"></el-input>
   <el-button type="text"><i class="el-icon-check" @click='check'></i></el-button>
  </div>
  <div class="editable-cell-text-wrapper" v-else>
   {{cellValue || ' '}}
   <el-button type="text"><i class="el-icon-edit" @click='edit'></i></el-button>
  </div>
 </div>
</template>
<script>
import util from '../../common/js/util';
import $ from 'jquery';
import axios from './../../common/ajax/axios.js';
export default { 
 data() {
  return { 
   cellValue:this.value,
   editable:false,
   editLoading:false,
  };
 },
 props : [
  'value'
 ],
 methods: {
  check(){
   const self = this;
   function callback(){
    self.editLoading = false;
    self.editable=false;
   }
   this.editLoading = true;
   self.$emit('cellChange',self.cellValue,callback)
  },
  edit(){
   this.editable = true;
  }
 }
};
</script>
<style lang="less" scoped>
.taskDetail{
 margin-left: 10px;
 margin-top:10px;
}
.editInput{
 width: 200px;
 height: 30px;
}
.el-icon-edit{
 margin-left: 20px;
}
.el-icon-check{
 margin-left: 20px;
}
</style>
<style>
.editInput .el-loading-spinner .circular{
 width:20px;
}
</style>

vue 封裝自定義組件之tabal列表編輯單元格組件實例代碼

解釋一下:

props:父組件傳遞給子組件的值;

$emit(‘方法名',數據) 返回父級數據,會觸發父組件中調用子組件的方法;

父組件中的使用方法:

vue 封裝自定義組件之tabal列表編輯單元格組件實例代碼

1.先將組件import 進來;

2.然后將組件暴露出去,這樣父組件就可以用了;

vue 封裝自定義組件之tabal列表編輯單元格組件實例代碼

總結

以上所述是小編給大家介紹的vue 封裝自定義組件tabal列表編輯單元格組件,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临海市| 崇左市| 邵阳市| 布尔津县| 宜丰县| 营口市| 嵊泗县| 巩留县| 莎车县| 卢氏县| 兴安盟| 沁水县| 阳信县| 廉江市| 息烽县| 谢通门县| 芦山县| 车致| 永年县| 上饶市| 广昌县| 庆元县| 若尔盖县| 大余县| 德钦县| 阳信县| 鹤壁市| 额济纳旗| 东至县| 阿拉善右旗| 永仁县| 贺州市| 磐石市| 东乡族自治县| 克拉玛依市| 玉龙| 平原县| 桂平市| 绥中县| 兰考县| 临沧市|