vue 패키지 사용자 정의 구성 요소 의 tabal 목록 편집 셀 구성 요소 인 스 턴 스 코드

3801 단어 vuetab구성 요소
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>
这里写图片描述
설명:
props:부모 구성 요소 가 하위 구성 요소 에 전달 하 는 값;
$emit('방법 명',데이터)는 부모 급 데 이 터 를 되 돌려 줍 니 다.부모 구성 요소 에서 하위 구성 요 소 를 호출 하 는 방법 을 촉발 합 니 다.
부모 구성 요소 의 사용 방법:
这里写图片描述
1.먼저 구성 요소 import 를 들 어 옵 니 다.
2.그리고 구성 요 소 를 노출 하면 부모 구성 요 소 를 사용 할 수 있 습 니 다.
这里写图片描述
총결산
위 에서 말 한 것 은 작은 편집 이 소개 한 vue 패키지 사용자 정의 구성 요소 tabal 목록 에서 셀 구성 요 소 를 편집 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.작은 편집 자 는 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기