@iankibetsh/shframework 5.0.8 → 5.0.9
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/dist/library.js +8 -0
- package/dist/library.mjs +8 -0
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -5996,6 +5996,14 @@ vue.watch(()=>props.tabCounts, () => {
|
|
|
5996
5996
|
resetTabCounts();
|
|
5997
5997
|
});
|
|
5998
5998
|
|
|
5999
|
+
vue.watch(()=>route.path,()=>{
|
|
6000
|
+
route.fullPath.split('/');
|
|
6001
|
+
if (!tabExistsInUrl()) {
|
|
6002
|
+
resetTabCounts();
|
|
6003
|
+
}
|
|
6004
|
+
|
|
6005
|
+
});
|
|
6006
|
+
|
|
5999
6007
|
vue.watch(()=>route.path,(newPath)=>{
|
|
6000
6008
|
path.value = newPath;
|
|
6001
6009
|
});
|
package/dist/library.mjs
CHANGED
|
@@ -5984,6 +5984,14 @@ watch(()=>props.tabCounts, () => {
|
|
|
5984
5984
|
resetTabCounts();
|
|
5985
5985
|
});
|
|
5986
5986
|
|
|
5987
|
+
watch(()=>route.path,()=>{
|
|
5988
|
+
route.fullPath.split('/');
|
|
5989
|
+
if (!tabExistsInUrl()) {
|
|
5990
|
+
resetTabCounts();
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5993
|
+
});
|
|
5994
|
+
|
|
5987
5995
|
watch(()=>route.path,(newPath)=>{
|
|
5988
5996
|
path.value = newPath;
|
|
5989
5997
|
});
|