feature slider markers

This commit is contained in:
mo.duan 2019-11-22 17:25:45 +08:00
parent 00d6aaf477
commit 09279ce908
5 changed files with 117 additions and 109 deletions

14
src/mixins/form.js Normal file
View file

@ -0,0 +1,14 @@
export default {
inject: {
FormInstance: {
default: ''
}
},
computed: {
itemDisabled () {
let state = this.disabled;
if (!state && this.FormInstance) state = this.FormInstance.disabled;
return state;
}
}
};