atst/js/mixins/modal.js
2018-09-25 11:13:22 -04:00

24 lines
495 B
JavaScript

export default {
methods: {
closeModal: function(name) {
this.activeModal = null
this.$emit('modalOpen', false)
},
openModal: function (name) {
this.activeModal = name
this.$emit('modalOpen', true)
}
},
data: function() {
return {
modals: {
styleguidemodal: false,
newprojectconfirmation: false,
pendingfinancialverification: false,
pendingccpoapproval: false,
},
activeModal: null,
}
}
}