src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author Alexandre Segura <mex.zktk@gmail.com>
Fri, 14 Apr 2017 18:09:19 +0200
changeset 467 5d0879ffa7de
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
Use folder GUID instead of primary key.

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