@explorer-1/vue 0.2.46 → 0.2.47

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "0.2.46",
3
+ "version": "0.2.47",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -77,9 +77,7 @@ export default defineComponent({
77
77
  // must account for <a>, <nuxt-link>, and <button> use-cases
78
78
  theHref(): string | undefined {
79
79
  let href = undefined
80
- if (this.computedTo && typeof this.computedTo === 'string') {
81
- href = this.computedTo
82
- } else if (this.tag === 'a') {
80
+ if (this.tag === 'a') {
83
81
  href = this.href
84
82
  }
85
83
  return href