fix:修复新建博客时提示标题和类别为空的问题
This commit is contained in:
@@ -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[],
|
||||
|
||||
Reference in New Issue
Block a user