src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author Harris Baptiste <harris.baptiste@iri.centrepompidou.fr>
Wed, 31 Aug 2016 19:03:13 +0200
changeset 165 11600deeaaee
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
removing build.js file

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