We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cfba98 commit 865020aCopy full SHA for 865020a
2 files changed
Template/App.vue
@@ -9,7 +9,7 @@
9
<iv-increment-button :initialValue="2" :increment="1" :minimum="min" :maximum="max"> </iv-increment-button>
10
<iv-toggle-advance id="toggle2" :initialModeIndex=0 @toggleswitched="sChange" position="centre"></iv-toggle-advance>
11
<iv-toggle-advance id="toggle3" :togglesDisabled=disableList :initialModeIndex=1 position="centre"></iv-toggle-advance>
12
-
+ <iv-tickbox></iv-tickbox>
13
14
</iv-DraggableDiv>
15
<iv-visualisation :title="projectName">
src/components/Tickbox/Tickbox.vue
@@ -32,7 +32,8 @@ export default {
32
mounted(){
33
eventBus.$on("reset-data", data => {
34
console.log(data);
35
- this.checkboxValue = false;
+ this.checkboxValue = this.value;
36
+ this.$emit("check", this.checkboxValue);
37
});
38
}
39
0 commit comments