@d-mok/quasar-app-extension-quasar-axe 2.1.59 → 2.1.60

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.1.59",
3
+ "version": "2.1.60",
4
4
  "description": "A Quasar App Extension",
5
5
  "author": "d-mok <49301824+d-mok@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -39,7 +39,7 @@
39
39
  <q-separator />
40
40
  <q-list separator>
41
41
  <qx-menu-item
42
- v-for="item in items"
42
+ v-for="item in items.filter($ => $.title)"
43
43
  :key="item.title"
44
44
  v-bind="item"
45
45
  />
@@ -93,9 +93,9 @@
93
93
  <script lang="ts" setup>
94
94
  import { ref } from 'vue'
95
95
  type item = {
96
- title: string
96
+ title?: string
97
97
  caption?: string
98
- icon: string
98
+ icon?: string
99
99
  link: string
100
100
  width?: number
101
101
  }
@@ -29,7 +29,7 @@
29
29
 
30
30
  <script lang="ts" setup>
31
31
  defineProps<{
32
- title: string
32
+ title?: string
33
33
  caption?: string
34
34
  link?: string
35
35
  icon?: string