-
-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
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;
}
}