亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

ElementUI Tag組件實現多標簽生成的方法示例

發布時間:2020-09-26 08:24:30 來源:腳本之家 閱讀:252 作者:GavinSir 欄目:web開發

現在好多應用場景里會有一些需要給文章打標簽等類似的操作,之前jquery用戶是使用taginput來實現,使用VUE以后elementui有一個組件非常簡單就是tag組件。

ElementUI Tag組件實現多標簽生成的方法示例

<el-tag
 :key="tag"
 v-for="tag in dynamicTags"
 closable
 :disable-transitions="false"
 @close="handleClose(tag)">
 {{tag}}
</el-tag>
<el-input
 class="input-new-tag"
 v-if="inputVisible"
 v-model="inputValue"
 ref="saveTagInput"
 size="small"
 @keyup.enter.native="handleInputConfirm"
 @blur="handleInputConfirm"
>
</el-input>
<el-button v-else class="button-new-tag" size="small" @click="showInput">+ New Tag</el-button>

<style>
 .el-tag + .el-tag {
  margin-left: 10px;
 }
 .button-new-tag {
  margin-left: 10px;
  height: 32px;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
 }
 .input-new-tag {
  width: 90px;
  margin-left: 10px;
  vertical-align: bottom;
 }
</style>

<script>
 export default {
  data() {
   return {
    dynamicTags: ['標簽一', '標簽二', '標簽三'],
    inputVisible: false,
    inputValue: ''
   };
  },
  methods: {
   handleClose(tag) {
    this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
   },

   showInput() {
    this.inputVisible = true;
    this.$nextTick(_ => {
     this.$refs.saveTagInput.$refs.input.focus();
    });
   },

   handleInputConfirm() {
    let inputValue = this.inputValue;
    if (inputValue) {
     this.dynamicTags.push(inputValue);
    }
    this.inputVisible = false;
    this.inputValue = '';
   }
  }
 }
</script>

這個是官方文檔給的實例,這樣可以解決單一標簽輸入。但是實際場景中,好多用戶是通過ctrl+c,ctrl+v的方式輸入的,有可能還會一起粘貼好多行的標簽,更有可能從excel中復制出來。

那我一一解決一下這樣一個場景

首先,先改一下樣式,讓文本框變長:

.el-tag{
 margin-right: 10px;
}
.el-tag + .el-tag {
  margin-right: 10px;
 }
 .button-new-tag {
  height: 32px;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
 }
 .input-new-tag {
  vertical-align: bottom;
 }

接著,修改一下enter和blur事件:

handleInputConfirm() {
 let inputValue = this.inputValue;
  if (inputValue) {
   var values = inputValue.split(/[,, \n]/).filter(item=>{
    return item!='' && item!=undefined
   })
   values.forEach(element => {
    var index = this.dynamicTags.findIndex(i=>{
    return i==element
   })
   if(index<0){
    this.dynamicTags.push(element);
   }
  });   
 }
 this.inputVisible = false;
 this.inputValue = '';
}

效果:

阿大發
asd

三大發舒服,

阿斯頓發撒地方。
阿斯頓發,阿斯頓發,,阿斯頓發,,阿斯頓發安撫,阿斯頓發 是淡淡的  點點滴滴方法,阿斯頓發撒地方,adfasd

我們把以上文字復制粘貼進去

ElementUI Tag組件實現多標簽生成的方法示例 

ElementUI Tag組件實現多標簽生成的方法示例

所有去重,拆分都OK,那們在試一下,從excel中復制

ElementUI Tag組件實現多標簽生成的方法示例

 ElementUI Tag組件實現多標簽生成的方法示例

完成。希望能夠幫到有需要的朋友。也希望大家多多支持億速云。

向AI問一下細節

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

AI

惠水县| 兴宁市| 玛沁县| 石门县| 阿勒泰市| 杭锦后旗| 茂名市| 资阳市| 黄冈市| 宜宾县| 曲阜市| 仁化县| 绍兴县| 武安市| 清徐县| 平果县| 富阳市| 达孜县| 光泽县| 砚山县| 塔河县| 南宁市| 海安县| 阿勒泰市| 娱乐| 东平县| 南华县| 淳化县| 延长县| 城步| 千阳县| 太白县| 漯河市| 蒲江县| 屏山县| 冷水江市| 东至县| 盐山县| 眉山市| 福州市| 昌宁县|