aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-wysiwyg-editor
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/html-wysiwyg-editor')
-rw-r--r--src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue2
-rw-r--r--src/tools/html-wysiwyg-editor/editor/menu-bar.vue2
2 files changed, 2 insertions, 2 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);
diff --git a/src/tools/html-wysiwyg-editor/editor/menu-bar.vue b/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
index 01ba9c7..d3ad316 100644
--- a/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
+++ b/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
@@ -18,7 +18,7 @@ import {
Strikethrough,
TextWrap,
} from '@vicons/tabler';
-import { type Component, toRefs } from 'vue';
+import type { Component } from 'vue';
import MenuBarItem from './menu-bar-item.vue';
const props = defineProps<{ editor: Editor }>();