free-fe-core-modules 0.1.5 → 0.1.7
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/components/Basic/SummaryHead.vue +1 -1
- package/components/SlidingCarousel/index.vue +1 -0
- package/components/SlidingNews/index.vue +1 -0
- package/package.json +1 -1
- package/view/dict/index.vue +1 -0
- package/view/error/list.vue +1 -0
- package/view/menu/index.vue +1 -0
- package/view/system/index.vue +1 -0
|
@@ -83,7 +83,7 @@ import { useObjectData, objectDataProps } from '../../composible/useObjectData';
|
|
|
83
83
|
|
|
84
84
|
export default defineComponent({
|
|
85
85
|
name: 'SummaryHead',
|
|
86
|
-
emits: ['clicked'],
|
|
86
|
+
emits: ['clicked', 'update:modelValue'],
|
|
87
87
|
props: {
|
|
88
88
|
...objectDataProps,
|
|
89
89
|
has_multiple_head: { type: Boolean, default: false },
|
package/package.json
CHANGED
package/view/dict/index.vue
CHANGED
package/view/error/list.vue
CHANGED
package/view/menu/index.vue
CHANGED
|
@@ -98,6 +98,7 @@ export default defineComponent({
|
|
|
98
98
|
editMenu: { type: Function, default: () => { } },
|
|
99
99
|
deleteMenu: { type: Function, default: () => { } },
|
|
100
100
|
},
|
|
101
|
+
emits: ['update:modelValue'],
|
|
101
102
|
setup(props, ctx) {
|
|
102
103
|
const selectedMenuNode = ref({});
|
|
103
104
|
const editingMenu = ref({});
|