Merge branch 'master' of github.com:akaunting/akaunting into 2.1-dev
This commit is contained in:
@ -65,7 +65,7 @@ export default {
|
||||
},
|
||||
initial_index: {
|
||||
type: Number,
|
||||
default: 1,
|
||||
default: 0,
|
||||
description: "index of the initially active slide (starting from 0)"
|
||||
},
|
||||
trigger: {
|
||||
|
@ -980,6 +980,10 @@ export default {
|
||||
}
|
||||
|
||||
this.$emit('interface', this.real_model);
|
||||
|
||||
setTimeout(function() {
|
||||
this.change();
|
||||
}.bind(this), 800);
|
||||
},
|
||||
|
||||
methods: {
|
||||
@ -1218,6 +1222,8 @@ export default {
|
||||
} else {
|
||||
this.real_model = value.toString();
|
||||
}
|
||||
|
||||
this.change();
|
||||
},
|
||||
|
||||
model: function (value) {
|
||||
@ -1226,6 +1232,8 @@ export default {
|
||||
} else {
|
||||
this.real_model = value.toString();
|
||||
}
|
||||
|
||||
this.change();
|
||||
}
|
||||
},
|
||||
}
|
||||
|
@ -616,6 +616,10 @@ export default {
|
||||
}
|
||||
|
||||
this.$emit('interface', this.real_model);
|
||||
|
||||
setTimeout(function() {
|
||||
this.change();
|
||||
}.bind(this), 800);
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
Reference in New Issue
Block a user