front-ui-admin 1.1.12 → 1.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14206,7 +14206,7 @@ input.install = function (Vue) {
14206
14206
  hit,
14207
14207
  effect
14208
14208
  } = this;
14209
- const classes = ['el-tag', type ? type == 'info' ? 'p-tag--info' : `el-tag--${type}` : '', tagSize ? `el-tag--${tagSize}` : '', effect ? `el-tag--${effect}` : '', hit && 'is-hit'];
14209
+ const classes = ['p-tag', type ? `p-tag--${type}` : '', tagSize ? `p-tag--${tagSize}` : '', effect ? `p-tag--${effect}` : '', hit && 'is-hit'];
14210
14210
  const tagEl = h("span", {
14211
14211
  "class": classes,
14212
14212
  "style": {
@@ -14216,7 +14216,7 @@ input.install = function (Vue) {
14216
14216
  "click": this.handleClick
14217
14217
  }
14218
14218
  }, [this.$slots.default, this.closable && h("i", {
14219
- "class": "el-tag__close el-icon-close",
14219
+ "class": "p-tag__close el-icon-close",
14220
14220
  "on": {
14221
14221
  "click": this.handleClose
14222
14222
  }