aboutsummaryrefslogtreecommitdiff
path: root/src/components/modal/modal.js
blob: 02d7017a3b0a2dc9196cfd9a2a39e03be8974020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const Modal = {
  props: {
    viewClass: {
      type: String
    },
    isOpen: {
      type: Boolean,
      default: true
    }
  },
  methods: {
    closeModal () {
      this.$emit('close')
    }
  }
}

export default Modal