@symbo.ls/uikit 2.11.277 → 2.11.281
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/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -9741,7 +9741,9 @@ var RouterLink = {
|
|
|
9741
9741
|
on: {
|
|
9742
9742
|
click: (event, el) => {
|
|
9743
9743
|
const { props: props4, context: ctx } = el;
|
|
9744
|
-
const { href, scrollToTop } = props4;
|
|
9744
|
+
const { href, scrollToTop, stopPropagation } = props4;
|
|
9745
|
+
if (stopPropagation)
|
|
9746
|
+
event.stopPropagation();
|
|
9745
9747
|
if (!href)
|
|
9746
9748
|
return;
|
|
9747
9749
|
const { utils, snippets, routerOptions } = ctx;
|