fix:修复新建博客时提示标题和类别为空的问题

This commit is contained in:
2025-09-28 18:43:24 +08:00
parent 724561df55
commit fef163d768
5 changed files with 18 additions and 14 deletions

View File

@@ -46,7 +46,13 @@ export const useBlogStore = defineStore('blog', {
createTime: '',
updateTime: ''
} as IBlog,
newBlog: {} as INewBlog,
newBlog: {
title: '',
topValue: 1,
isGreat: false,
category: '',
content: ''
} as INewBlog,
blogCategoryList: [] as IBlogCategory[],
blogStats: {} as IBlogStats,
latestBlogList: [] as IBlogLatest[],