diff options
Diffstat (limited to 'src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue')
-rw-r--r-- | src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue b/src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue index 85d72e6..9a4cf1b 100644 --- a/src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue +++ b/src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue @@ -1,5 +1,5 @@ <script setup lang="ts"> -import { type Component, toRefs } from 'vue'; +import type { Component } from 'vue'; const props = defineProps<{ icon: Component; title: string; action: () => void; isActive?: () => boolean }>(); const { icon, title, action, isActive } = toRefs(props); |