初始化项目文件

This commit is contained in:
2025-07-11 16:54:11 +08:00
parent 6bffd582a0
commit 39fedaac16
213 changed files with 16944 additions and 0 deletions

View File

@ -0,0 +1,45 @@
import { reactive } from "vue";
export const useNotes: {
id: string;
content: string;
preview: boolean;
toolbars: any[];
} = reactive({
id: "my-editor",
content: "",
preview: true,
toolbars: [
"bold",
"underline",
"italic",
"-",
"title",
"strikeThrough",
"sub",
"sup",
"quote",
"unorderedList",
"orderedList",
"task",
"-",
"codeRow",
"code",
"link",
"image",
"table",
"mermaid",
"katex",
"-",
"revoke",
"next",
"save",
0,
"=",
"pageFullscreen",
"fullscreen",
"preview",
"previewOnly",
"catalog",
],
});