Skip to content
Snippets Groups Projects
Commit 182af5b8 authored by Kasper Seweryn's avatar Kasper Seweryn :pancakes:
Browse files

Fix docs build

parent 6b263192
No related branches found
No related tags found
1 merge request!1Implement all components
Pipeline #23556 passed
...@@ -11,17 +11,23 @@ const text3 = ref('') ...@@ -11,17 +11,23 @@ const text3 = ref('')
```html ```html
<fw-textarea v-model="text" /> <fw-textarea v-model="text" />
``` ```
<ClientOnly>
<fw-textarea v-model="text1" /> <fw-textarea v-model="text1" />
</ClientOnly>
## Textarea max length ## Textarea max length
```html ```html
<fw-textarea v-model="text" :max="20" /> <fw-textarea v-model="text" :max="20" />
``` ```
<ClientOnly>
<fw-textarea v-model="text2" :max="20" /> <fw-textarea v-model="text2" :max="20" />
</ClientOnly>
## Textarea placeholder ## Textarea placeholder
```html ```html
<fw-textarea v-model="text" placeholder="Describe this track here…" /> <fw-textarea v-model="text" placeholder="Describe this track here…" />
``` ```
<ClientOnly>
<fw-textarea v-model="text3" placeholder="Describe this track here…" /> <fw-textarea v-model="text3" placeholder="Describe this track here…" />
</ClientOnly>
...@@ -10,6 +10,7 @@ By default table of contents is based on the `<h1>` tags ...@@ -10,6 +10,7 @@ By default table of contents is based on the `<h1>` tags
More content... More content...
</fw-toc> </fw-toc>
``` ```
<ClientOnly>
<fw-toc> <fw-toc>
<h1>This is a Table of Contents</h1> <h1>This is a Table of Contents</h1>
<p>In expedita ratione consequatur rerum et ullam architecto. Qui ut doloremque laboriosam perferendis corporis voluptatibus voluptates. Ad ducimus adipisci vitae mollitia quis. Aut placeat quaerat maxime velit et eius voluptas fugit. Omnis et et perspiciatis mollitia occaecati.</p> <p>In expedita ratione consequatur rerum et ullam architecto. Qui ut doloremque laboriosam perferendis corporis voluptatibus voluptates. Ad ducimus adipisci vitae mollitia quis. Aut placeat quaerat maxime velit et eius voluptas fugit. Omnis et et perspiciatis mollitia occaecati.</p>
...@@ -25,6 +26,7 @@ By default table of contents is based on the `<h1>` tags ...@@ -25,6 +26,7 @@ By default table of contents is based on the `<h1>` tags
<p>Qui impedit dicta earum. Qui repudiandae est magnam. Illum sit ratione exercitationem fugiat aut tempore. Ut sit deserunt ratione ut architecto deleniti ea magnam. Voluptatibus dignissimos voluptatem rem fugiat.</p> <p>Qui impedit dicta earum. Qui repudiandae est magnam. Illum sit ratione exercitationem fugiat aut tempore. Ut sit deserunt ratione ut architecto deleniti ea magnam. Voluptatibus dignissimos voluptatem rem fugiat.</p>
</fw-toc> </fw-toc>
</ClientOnly>
## Custom headings ## Custom headings
```html ```html
...@@ -36,6 +38,7 @@ By default table of contents is based on the `<h1>` tags ...@@ -36,6 +38,7 @@ By default table of contents is based on the `<h1>` tags
More content... More content...
</fw-toc> </fw-toc>
``` ```
<ClientOnly>
<fw-toc heading="h2"> <fw-toc heading="h2">
<h1>This is a Table of Contents</h1> <h1>This is a Table of Contents</h1>
<p>In expedita ratione consequatur rerum et ullam architecto. Qui ut doloremque laboriosam perferendis corporis voluptatibus voluptates. Ad ducimus adipisci vitae mollitia quis. Aut placeat quaerat maxime velit et eius voluptas fugit. Omnis et et perspiciatis mollitia occaecati.</p> <p>In expedita ratione consequatur rerum et ullam architecto. Qui ut doloremque laboriosam perferendis corporis voluptatibus voluptates. Ad ducimus adipisci vitae mollitia quis. Aut placeat quaerat maxime velit et eius voluptas fugit. Omnis et et perspiciatis mollitia occaecati.</p>
...@@ -51,3 +54,4 @@ By default table of contents is based on the `<h1>` tags ...@@ -51,3 +54,4 @@ By default table of contents is based on the `<h1>` tags
<p>Qui impedit dicta earum. Qui repudiandae est magnam. Illum sit ratione exercitationem fugiat aut tempore. Ut sit deserunt ratione ut architecto deleniti ea magnam. Voluptatibus dignissimos voluptatem rem fugiat.</p> <p>Qui impedit dicta earum. Qui repudiandae est magnam. Illum sit ratione exercitationem fugiat aut tempore. Ut sit deserunt ratione ut architecto deleniti ea magnam. Voluptatibus dignissimos voluptatem rem fugiat.</p>
</fw-toc> </fw-toc>
</ClientOnly>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment