This commit is contained in:
WangXiaoDong
2023-09-25 10:09:00 +08:00
parent 173f35042d
commit d9868d5cf0
37 changed files with 1618 additions and 1146 deletions

View File

@@ -6,12 +6,12 @@ interface DesignDetail{
}
const Woekspace : Module<DesignDetail,RootState> = {
const Workspace : Module<DesignDetail,RootState> = {
state:{
workspace:{}
},
mutations:{
setWoekspace(state,files){
setWorkspace(state,files){
state.workspace = files
},
@@ -22,4 +22,4 @@ const Woekspace : Module<DesignDetail,RootState> = {
}
}
export default Woekspace
export default Workspace