@fy-/fws-vue 0.5.0 → 0.5.2

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.
@@ -59,7 +59,7 @@ onUnmounted(() => {
59
59
  style="z-index: 40"
60
60
  >
61
61
  <DialogPanel
62
- class="flex absolute inset-0 flex-col items-center justify-center min-h-screen text-fv-neutral-800 dark:text-fv-neutral-300 bg-fv-neutral-900/[.20] dark:bg-fv-neutral-50/[.20]"
62
+ class="flex absolute backdrop-blur-[8px] inset-0 flex-col items-center justify-center min-h-screen text-fv-neutral-800 dark:text-fv-neutral-300 bg-fv-neutral-900/[.20] dark:bg-fv-neutral-50/[.20]"
63
63
  style="z-index: 41"
64
64
  >
65
65
  <div
@@ -70,8 +70,12 @@ const page = (page: number) => {
70
70
  };
71
71
 
72
72
  const currentUrl = computed(() => {
73
+ /*
73
74
  const url = getURL();
74
75
  return `${url.Path}?page=`;
76
+ */
77
+ // user router url instead of getURL
78
+ return `${history.currentRoute.path}?page=`;
75
79
  });
76
80
 
77
81
  const checkPageNumber = (page: number = 1) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {