mediacube-ui 0.1.282 → 0.1.283
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.283](https://github.com/MediaCubeCo/mcui/compare/v0.1.282...v0.1.283) (2024-06-10)
|
|
6
|
+
|
|
5
7
|
### [0.1.282](https://github.com/MediaCubeCo/mcui/compare/v0.1.281...v0.1.282) (2024-06-05)
|
|
6
8
|
|
|
7
9
|
### [0.1.281](https://github.com/MediaCubeCo/mcui/compare/v0.1.280...v0.1.281) (2024-05-31)
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<a
|
|
14
14
|
:aria-controls="tab.hash"
|
|
15
15
|
:aria-selected="tab.isActive"
|
|
16
|
-
:href="
|
|
16
|
+
:href="tab.to || tab.href || tab.hash"
|
|
17
17
|
class="tabs-component-tab-a"
|
|
18
18
|
role="tab"
|
|
19
19
|
@click="selectTab(tab.hash, $event)"
|
|
@@ -356,10 +356,6 @@ export default {
|
|
|
356
356
|
getActiveTabIndex() {
|
|
357
357
|
return this.getTabIndex(this.activeTabHash)
|
|
358
358
|
},
|
|
359
|
-
|
|
360
|
-
getHref(tab) {
|
|
361
|
-
return tab.$listeners.click ? null : tab.to || tab.href || tab.hash
|
|
362
|
-
},
|
|
363
359
|
},
|
|
364
360
|
}
|
|
365
361
|
</script>
|