-
+
![]()
+
@@ -45,8 +38,8 @@
class="blurImageCheckbox"
type="checkbox"
id="blur_img"
- v-model="checkedBlur"
- @change="form.checkbox = checkedBlur"
+ v-model="blurImage"
+ @change="form.checkbox = blurImage"
/>
@@ -223,13 +216,13 @@ export default {
contentMin: 3,
hashtags: [],
elem: null,
- checkedBlur: false,
+ blurImage: false,
}
},
created() {},
mounted() {
if (this.contribution && this.contribution.blurImage === true) {
- this.checkedBlur = true
+ this.blurImage = true
}
},
computed: {
@@ -242,8 +235,8 @@ export default {
},
methods: {
unBlur() {
- if (this.checkedBlur) {
- this.checkedBlur = false
+ if (this.blurImage) {
+ this.blurImage = false
}
},
submit() {
@@ -335,18 +328,6 @@ export default {