diff options
author | 2023-06-10 17:14:50 +0200 | |
---|---|---|
committer | 2023-06-10 17:24:10 +0200 | |
commit | fe61f0f2f2bc89fe15ebce2d3a926c02191e4f12 (patch) | |
tree | 518fdf5af3035e2670969bf4880045d1800dd184 /src/tools/html-wysiwyg-editor/editor/menu-bar.vue | |
parent | 93799af83c6dd36ef41935fcaabff9c6342e8421 (diff) | |
download | it-tools-fe61f0f2f2bc89fe15ebce2d3a926c02191e4f12.tar.gz it-tools-fe61f0f2f2bc89fe15ebce2d3a926c02191e4f12.tar.zst it-tools-fe61f0f2f2bc89fe15ebce2d3a926c02191e4f12.zip |
refactor(imports): removed unnecessary imports to vue
Diffstat (limited to 'src/tools/html-wysiwyg-editor/editor/menu-bar.vue')
-rw-r--r-- | src/tools/html-wysiwyg-editor/editor/menu-bar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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 }>(); |