mirror of https://github.com/halo-dev/halo-admin
chore: fix lint issue (#848)
#### What type of PR is this? /kind improvement #### What this PR does / why we need it: 移除未使用的导入和变量。 <img width="824" alt="image" src="https://user-images.githubusercontent.com/21301288/218025655-d5da2012-fe78-4bfe-9138-3015e97a25e4.png"> #### Does this PR introduce a user-facing change? ```release-note None ```pull/852/head
parent
7320aa1592
commit
047e221ed6
|
@ -300,7 +300,7 @@ const editor = useEditor({
|
|||
}
|
||||
return false;
|
||||
},
|
||||
handlePaste: (view, event: ClipboardEvent, slice) => {
|
||||
handlePaste: (view, event: ClipboardEvent) => {
|
||||
const images = Array.from(event.clipboardData?.items || [])
|
||||
.map((item) => {
|
||||
return item.getAsFile();
|
||||
|
|
|
@ -14,7 +14,6 @@ import {
|
|||
import { markRaw, ref, type Component } from "vue";
|
||||
import { useRouter } from "vue-router";
|
||||
import ThemePreviewModal from "@/modules/interface/themes/components/preview/ThemePreviewModal.vue";
|
||||
import { useUserStore } from "@/stores/user";
|
||||
|
||||
interface Action {
|
||||
icon: Component;
|
||||
|
|
Loading…
Reference in New Issue