forked from github/dataease
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
export default {
|
|
mutations: {
|
|
lock({ curComponent }) {
|
|
curComponent.isLock = true
|
|
},
|
|
|
|
unlock({ curComponent }) {
|
|
curComponent.isLock = false
|
|
}
|
|
}
|
|
}
|