@d-mok/quasar-app-extension-quasar-axe 2.0.12 → 2.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "A Quasar App Extension",
5
5
  "author": "d-mok <49301824+d-mok@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -33,14 +33,19 @@
33
33
  <script lang="ts" setup>
34
34
  import { computed } from 'vue'
35
35
 
36
- const props = defineProps<{
37
- name?: string
38
- modelValue?: string | boolean
39
- width?: number
40
- title?: string
41
- side?: 'right' | 'left'
42
- noClose?: boolean
43
- }>()
36
+ const props = withDefaults(
37
+ defineProps<{
38
+ name?: string
39
+ modelValue?: string | boolean
40
+ width?: number
41
+ title?: string
42
+ side?: 'right' | 'left'
43
+ noClose?: boolean
44
+ }>(),
45
+ {
46
+ modelValue: undefined,
47
+ }
48
+ )
44
49
 
45
50
  const emit = defineEmits(['update:model-value'])
46
51