src_js/iconolab-bundle/src/components/diffviewer/diffviewer.vue
changeset 153 9ed54b10ce16
child 156 e1e14766f608
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src_js/iconolab-bundle/src/components/diffviewer/diffviewer.vue	Fri Aug 26 18:48:30 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