diff --git a/src/components/ui/SeasonedButton.vue b/src/components/ui/SeasonedButton.vue index 8e2e9f5..28da75d 100644 --- a/src/components/ui/SeasonedButton.vue +++ b/src/components/ui/SeasonedButton.vue @@ -1,6 +1,6 @@ @@ -13,17 +13,8 @@ export default { active: Boolean, default: false }, - data() { - isActive: false - }, - beforeMount() { - if (this.active) { - this.isActive = this.active; - } - }, methods: { emit() { - this.isActive = !this.isActive; this.$emit('click') } }