Create a custom toggle switch component for Thermal Design System (TDS).
The currently package vue-js-toggle-button is not reactively toggling the switch. For instance:
commitFeature: {
get: function() {
return !!+this.settings.commitFeature;
},
set: function(value) {
this.settings.commitFeature = value ? 1 : 0;
}
}
Create a custom toggle switch component for Thermal Design System (TDS).
The currently package
vue-js-toggle-buttonis not reactively toggling the switch. For instance: