src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
changeset 156 e1e14766f608
child 539 08e2513dbc2f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue	Tue Aug 30 16:58:59 2016 +0200
@@ -0,0 +1,22 @@
+<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>
\ No newline at end of file