You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
359 B
20 lines
359 B
export const className = 'dec.dcm.model.components.right.edit'; |
|
export const Model = BI.inherit(Fix.Model, { |
|
state() { |
|
return { |
|
isCollapse: false, |
|
}; |
|
}, |
|
|
|
computed: { |
|
|
|
}, |
|
|
|
actions: { |
|
setIsCollapse(status: boolean) { |
|
this.model.isCollapse = status; |
|
}, |
|
}, |
|
}); |
|
BI.model(className, Model); |
|
export default className;
|
|
|