src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Fri, 15 Jun 2018 16:45:57 +0200
changeset 544 3e48e2e2c0ce
parent 539 08e2513dbc2f
permissions -rw-r--r--
Create a generic import image command

<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>