@fy-/fws-vue 2.1.32 → 2.1.33

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.
@@ -72,8 +72,8 @@ function page(page: number): RouteLocationRaw {
72
72
  const isMounted = ref(false)
73
73
  pageWatcher.value = watch(
74
74
  () => route.query.page,
75
- (oldValue, v) => {
76
- if (v === undefined || v === oldValue || !isMounted.value) return
75
+ (v, oldValue) => {
76
+ if (v === oldValue || !isMounted.value) return
77
77
  eventBus.emit(`${props.id}GoToPage`, v || 1)
78
78
  },
79
79
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.1.32",
3
+ "version": "2.1.33",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",