Skip to content

Commit a88a4fa

Browse files
committed
fic: patch up tooling component
1 parent 0494222 commit a88a4fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.vitepress/theme/components/Home/Tooling.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const tab = ref(tooling[0].title);
111111
<div class="col-span-2">
112112
<div
113113
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
114-
v-if="tab === 'Powerful DB Layer'">
114+
v-show="tab === 'Powerful DB Layer'">
115115
<h3 class="font-bold text-2xl !mt-0">Powerful DB Layer</h3>
116116
<div class="mt-4 leading-relaxed space-y-4">
117117
<p>Leaf's DB module takes all the complexity out of data fetching, relationships and saving data in your
@@ -148,7 +148,7 @@ const tab = ref(tooling[0].title);
148148

149149
<div
150150
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
151-
v-if="tab === 'Dead-simple Authentication'">
151+
v-show="tab === 'Dead-simple Authentication'">
152152
<h3 class="font-bold text-2xl !mt-0">Authentication</h3>
153153
<div class="mt-4 leading-relaxed space-y-4">
154154
<p>Sign users in or create accounts using Leaf's Auth module:</p>
@@ -181,7 +181,7 @@ const tab = ref(tooling[0].title);
181181

182182
<div
183183
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
184-
v-if="tab === 'Simplified Http API'">
184+
v-show="tab === 'Simplified Http API'">
185185
<h3 class="font-bold text-2xl !mt-0">Simplified HTTP</h3>
186186
<div class="mt-4 leading-relaxed space-y-4">
187187
<p>Leaf abstracts all the annoying little HTTP details and provides a simple API for handling requests,
@@ -222,7 +222,7 @@ const tab = ref(tooling[0].title);
222222

223223
<div
224224
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
225-
v-if="tab === 'Useful App Utils'">
225+
v-show="tab === 'Useful App Utils'">
226226
<h3 class="font-bold text-2xl !mt-0">Useful App Utils</h3>
227227
<div class="mt-4 leading-relaxed space-y-4">
228228
<p>Leaf provides all the utilities you need to handle all the tiny repetitive tasks that come with
@@ -280,7 +280,7 @@ const tab = ref(tooling[0].title);
280280

281281
<div
282282
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
283-
v-if="tab === 'Dynamic View Layer'">
283+
v-show="tab === 'Dynamic View Layer'">
284284
<h3 class="font-bold text-2xl !mt-0">Dynamic View Layer</h3>
285285
<div class="mt-4 leading-relaxed space-y-4">
286286
<p>Leaf has support for some of the most popular frontend technologies, from templating engines like Blade

0 commit comments

Comments
 (0)