@everchron/ec-shards 0.6.15 → 0.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ec-shards.common.js +27 -35
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +27 -35
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/checkbox/checkbox.vue +0 -10
package/package.json
CHANGED
|
@@ -114,19 +114,9 @@
|
|
|
114
114
|
|
|
115
115
|
methods: {
|
|
116
116
|
handleClick() {
|
|
117
|
-
console.log('checkbox click handled 1', this.checked, this.checked ? this.valueWhenTrue : this.valueWhenFalse)
|
|
118
117
|
this.checked = !this.checked
|
|
119
|
-
console.log('checkbox click handled 2', this.checked, this.checked ? this.valueWhenTrue : this.valueWhenFalse)
|
|
120
118
|
this.$emit('input', this.checked ? this.valueWhenTrue : this.valueWhenFalse)
|
|
121
119
|
}
|
|
122
|
-
},
|
|
123
|
-
|
|
124
|
-
mounted(){
|
|
125
|
-
console.log('checkbox mounted', this.value)
|
|
126
|
-
},
|
|
127
|
-
|
|
128
|
-
updated(){
|
|
129
|
-
console.log('checkbox updated', this.value)
|
|
130
120
|
}
|
|
131
121
|
}
|
|
132
122
|
</script>
|