src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author durandn
Thu, 13 Oct 2016 13:51:43 +0200
changeset 227 b67ea0d6c621
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
search page design and item preview for multiple images #36

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