src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author durandn
Wed, 21 Sep 2016 14:10:26 +0200
changeset 207 bbec24a709d9
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
increment version

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