comand-component-library 3.1.97 → 3.1.98
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
@@ -70,9 +70,7 @@
|
|
70
70
|
<!-- begin type === router -->
|
71
71
|
<router-link v-if="navigationSubEntry.type === 'router'"
|
72
72
|
:to="getRoute(navigationSubEntry)"
|
73
|
-
:title="navigationSubEntry.tooltip"
|
74
|
-
:target="navigationSubEntry.target"
|
75
|
-
@click="executeLink($event, navigationSubEntry)">
|
73
|
+
:title="navigationSubEntry.tooltip">
|
76
74
|
<span v-if="navigationSubEntry.iconClass" :class="navigationSubEntry.iconClass"></span>
|
77
75
|
<span v-if="navigationSubEntry.text">{{ navigationSubEntry.text }}</span>
|
78
76
|
<span v-if="navigationSubEntry.subentries && navigationSubEntry.subentries.length > 0"
|
@@ -101,9 +99,7 @@
|
|
101
99
|
<!-- begin type === router -->
|
102
100
|
<router-link v-if="navigationEntry.type === 'router'"
|
103
101
|
:to="getRoute(navigationSubSubEntry)"
|
104
|
-
:target="navigationSubSubEntry.target"
|
105
|
-
:title="navigationSubSubEntry.tooltip"
|
106
|
-
@click="executeLink($event, navigationSubSubEntry)">
|
102
|
+
:target="navigationSubSubEntry.target">
|
107
103
|
<span v-if="navigationSubSubEntry.iconClass" :class="navigationSubSubEntry.iconClass"></span>
|
108
104
|
<span v-if="navigationSubSubEntry.text">{{ navigationSubSubEntry.text }}</span>
|
109
105
|
<span v-if="navigationSubSubEntry.subentries && navigationSubSubEntry.subentries.length > 0"
|