src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author ymh <ymh.work@gmail.com>
Wed, 24 May 2017 16:55:48 +0200
changeset 527 b56b0a4760f2
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
Increment version to 0.27

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