This commit is contained in:
@@ -135,23 +135,20 @@ export default {
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
selected: {
|
||||
handler(newValue, oldValue) {
|
||||
if (newValue.length != oldValue.length) {
|
||||
console.log("Selected changed, triggering handleSelectChange:");
|
||||
|
||||
this.handleSelectChange();
|
||||
}
|
||||
},
|
||||
deep: true
|
||||
}
|
||||
// ,
|
||||
// selected: function(newValue, oldValue) {
|
||||
// if (newValue != oldValue) {
|
||||
// console.log("Selected changed, triggering handleSelectChange:");
|
||||
// this.handleSelectChange();
|
||||
// }
|
||||
// selected: {
|
||||
// handler(newValue, oldValue) {
|
||||
// //without this it fires twice
|
||||
// if (newValue.length != oldValue.length) {
|
||||
// this.handleSelectChange();
|
||||
// }
|
||||
// },
|
||||
// deep: true
|
||||
// }
|
||||
selected: function(newValue, oldValue) {
|
||||
if (newValue.length != oldValue.length) {
|
||||
this.handleSelectChange();
|
||||
}
|
||||
}
|
||||
// , //for now, not going with my own mini mode but may revisit so keeping this here but commented out for now
|
||||
// "$vuetify.breakpoint.xs": function(value) {
|
||||
// this.getDataFromApi();
|
||||
|
||||
Reference in New Issue
Block a user