Skip to content

Commit

Permalink
fix: 修复类型标注错误
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 15584
  • Loading branch information
Carlmac committed Aug 16, 2024
1 parent d6c6aa8 commit aa7bc64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -221,8 +221,8 @@ const handleEditMarkdown = (type: string) => {
markdownDoc.value = docDataItem.content;
};
const isFullscreen = ref<Boolean>(false);
const handleFullscreen = (full: Boolean) => {
const isFullscreen = ref(false);
const handleFullscreen = (full: boolean) => {
isFullscreen.value = full;
};

0 comments on commit aa7bc64

Please sign in to comment.