src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Thu, 07 Jun 2018 15:12:09 +0200
changeset 541 4aa4664b0343
parent 539 08e2513dbc2f
permissions -rw-r--r--
replace extract-text-webpack-plugin (deprecated) by mini-css-extract-plugin. Try to make webpack-dev-server work again on the project

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