src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue
changeset 539 08e2513dbc2f
parent 156 e1e14766f608
--- a/src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue	Tue Jun 05 13:56:20 2018 +0200
+++ b/src_js/iconolab-bundle/src/components/modalpanel/ModalPanel.vue	Wed Jun 06 16:21:54 2018 +0200
@@ -1,22 +1,21 @@
 <template src='./template.html'></template>
 <script>
-	export default {
-		props: ["close-with-escape"],
-		data () {
-			return {
-				display: false
-			}
-		},
+export default {
+  props: ["close-with-escape"],
+  data() {
+    return {
+      display: false
+    };
+  },
 
-		methods: {
-			close: function () {
-				this.display = false;
-			},
+  methods: {
+    close: function() {
+      this.display = false;
+    },
 
-			show: function () {
-				this.display = true;
-			}
-		}
-	}
-
-</script>
\ No newline at end of file
+    show: function() {
+      this.display = true;
+    }
+  }
+};
+</script>