src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Thu, 02 Aug 2018 11:08:38 +0200
changeset 591 30644b6ac4ce
parent 539 08e2513dbc2f
permissions -rw-r--r--
Added tag 0.1.9 for changeset b4464d8a84a3

<template src='./template.html'></template>
<script>
export default {
  props: ["close-with-escape"],
  data() {
    return {
      display: false
    };
  },

  methods: {
    close: function() {
      this.display = false;
    },

    show: function() {
      this.display = true;
    }
  }
};
</script>