src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
author durandn
Thu, 06 Oct 2016 15:09:18 +0200
changeset 213 43aa7c589048
parent 156 e1e14766f608
child 539 08e2513dbc2f
permissions -rw-r--r--
Work on pagination: collection_home mostly, a few touches on item_detail and detail_annotations #39

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