16 lines
296 B
JavaScript
16 lines
296 B
JavaScript
|
import ProgressButton from '../progress_button/progress_button.vue'
|
||
|
|
||
|
const DomainMuteCard = {
|
||
|
props: ['domain'],
|
||
|
components: {
|
||
|
ProgressButton
|
||
|
},
|
||
|
methods: {
|
||
|
unmuteDomain () {
|
||
|
return this.$store.dispatch('unmuteDomain', this.domain)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default DomainMuteCard
|