src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Sat, 23 Jun 2018 02:31:30 +0200
changeset 551 c1653196d51c
parent 539 08e2513dbc2f
permissions -rw-r--r--
migration correction

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