src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author duong tam kien <tk@deveha.com>
Tue, 28 Feb 2017 16:49:14 +0100
changeset 401 323fe141893c
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
conjugaison française

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