src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Wed, 01 Aug 2018 22:21:40 +0200
changeset 584 b5f3daa86400
parent 539 08e2513dbc2f
permissions -rw-r--r--
again, correct image destination filename

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