From 9dd5975179b292eacd423c730f4a9232c10c8a93 Mon Sep 17 00:00:00 2001 From: Samson Akol Date: Wed, 5 Oct 2022 17:52:57 +0300 Subject: [PATCH] Updates indentation --- docs/pages/kresponsivewindow.vue | 86 ++++++++++++++++---------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/docs/pages/kresponsivewindow.vue b/docs/pages/kresponsivewindow.vue index 94b08807a..4ae21fcd9 100644 --- a/docs/pages/kresponsivewindow.vue +++ b/docs/pages/kresponsivewindow.vue @@ -81,26 +81,26 @@ Consider a Vue file with this in its template and script:

- - -
- Box 1 -
-
- Box 2 -
-
- - computed: { - boxStyle() { - if (this.windowIsLarge) { - return { display: 'inline-block' }; - } - return { display: 'block' }; - }, + + +
+ Box 1 +
+
+ Box 2 +
+
+ + computed: { + boxStyle() { + if (this.windowIsLarge) { + return { display: 'inline-block' }; + } + return { display: 'block' }; }, - - + }, +
+

This results in two boxes that stack vertically on small screens and otherwise display side-by-side:

@@ -126,30 +126,30 @@ Consider a Vue file with this in its template and script:

- - -
- Box 1 -
-
- Box 2 -
-
- - setup() { - ... - - const boxStyle = computed(function () { - return { display: windowIsLarge.value ? 'inline-block' : 'block' }; - }); - - return { - ..., - boxStyle, - }; - } - - + + +
+ Box 1 +
+
+ Box 2 +
+
+ + setup() { + ... + + const boxStyle = computed(function () { + return { display: windowIsLarge.value ? 'inline-block' : 'block' }; + }); + + return { + ..., + boxStyle, + }; + } + +

This results in two boxes that stack vertically on small screens and otherwise display side-by-side: