Vue增加tag标签功能

  |   Vue.js Node.js

前言

最近开发一个羽翼图书后台系统的组件化开发,参考网上搜索关于vue标签功能,然后自己研究一下,如果做好了tag标签组件化的话,以后要开发一个项目的时候,可以就用这个小组件化功能。

实现

css:

.tags-wrap {
  background-color: #fff;
  border: 1px solid #ccc;
  overflow: hidden;
  padding-left: 4px;
  padding-top: 4px;
  cursor: text;
  text-align: left;
  -webkit-appearance: textfield;
}

.tags-wrap::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.tags-input {
  background: transparent;
  border: 0;
  color: #777;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
  margin-top: 1px;
  outline: none;
  padding: 4px;
  padding-left: 0;
  width: 80px
}

.content {
  background-color: #e0e0e0;
  border-radius: 8px;
  color: rgba(0, 0, 0, .87);
  line-height: 25px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  margin-right: 4px;
  padding: 6px;
}

.del {
  cursor: pointer;
  font-weight: 700;
  color: #1F1F1F;
}

可以查看展示效果: