src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Thu, 01 Sep 2016 14:19:13 +0200
changeset 169 d43e89d325c6
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
remove unnecessary STATICFILES_DIRS from default settings

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