chore: update default content

This commit is contained in:
yanglbme 2024-12-19 17:51:00 +08:00
parent 8cc1f48140
commit eb709a8eaf

View File

@ -63,7 +63,7 @@ export const useStore = defineStore(`store`, () => {
const addPost = (title: string) => {
currentPostIndex.value = posts.value.push({
title,
content: DEFAULT_CONTENT,
content: `# ${title}`,
}) - 1
}