@dargmuesli/nuxt-vio 3.0.0 → 3.1.0

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.
@@ -16,6 +16,7 @@
16
16
  v-else
17
17
  :aria-label="ariaLabel"
18
18
  :class="classes"
19
+ :locale="locale"
19
20
  :to="isToRelative ? append(route.path, to) : to"
20
21
  @click="emit('click')"
21
22
  >
@@ -31,6 +32,7 @@ export interface Props {
31
32
  isColored?: boolean
32
33
  isToRelative?: boolean
33
34
  isUnderlined?: boolean
35
+ locale?: string
34
36
  nofollow?: boolean
35
37
  to: NuxtLinkProps['to']
36
38
  }
@@ -39,6 +41,7 @@ const props = withDefaults(defineProps<Props>(), {
39
41
  isColored: true,
40
42
  isToRelative: false,
41
43
  isUnderlined: false,
44
+ locale: undefined,
42
45
  nofollow: false,
43
46
  })
44
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"