@asd20/ui 3.2.390 → 3.2.391

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.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.390",
8
+ "version": "3.2.391",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -102,12 +102,16 @@ export default {
102
102
  }
103
103
  },
104
104
  tag() {
105
- if (this.actionable)
106
- return 'button'
105
+ // if (this.actionable)
106
+ // return 'button'
107
107
  // if (this.actionable && this.to && this.to[0] === '/' && this.$router)
108
108
  // return 'button'
109
- if (this.actionable && this.hrefValue) return 'a'
110
- return 'div'
109
+ if (this.actionable && this.hrefValue) {
110
+ return 'a'
111
+ // return 'div'
112
+ } else {
113
+ return 'button'
114
+ }
111
115
  },
112
116
  hrefAttr() {
113
117
  return this.tag === 'a' ? 'href' : null