You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create a blockquote, add a `>` in front of a paragraph.
63
+
## Links
64
+
65
+
To create a link, wrap the link text in brackets `[]()`.
65
66
66
67
::code-preview{class="[&>div]:*:my-0"}
67
68
68
-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
Links to other pages of your documentation needs to be root-relative. For example, if you have a page called `getting-started/installation`, the link to that page should be `[Installation](/getting-started/installation)`.
79
82
80
83
::code-preview{class="[&>div]:*:my-0"}
81
84
82
-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
83
-
>
84
-
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
85
+
[Installation](/getting-started/installation)
85
86
86
87
#code
87
88
88
89
```mdc
89
-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
90
-
>
91
-
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
90
+
[Installation](/getting-started/installation)
92
91
```
93
92
94
93
::
95
94
96
-
## Links
95
+
## Lists
97
96
98
-
To create a link, wrap the link text in brackets `[]()`.
97
+
### Unordered
98
+
99
+
To create an unordered list, start each item with a `-`.
Links to other pages of your documentation needs to be root-relative. For example, if you have a page called `getting-started/installation`, the link to that page should be `[Installation](/getting-started/installation)`.
119
+
To create an ordered list, start each item with a number.
115
120
116
121
::code-preview{class="[&>div]:*:my-0"}
117
122
118
-
[Installation](/getting-started/installation)
123
+
1. I'm a list item.
124
+
2. I'm another list item.
125
+
3. I'm the last list item.
119
126
120
127
#code
121
128
122
129
```mdc
123
-
[Installation](/getting-started/installation)
130
+
1. I'm a list item.
131
+
2. I'm another list item.
132
+
3. I'm the last list item.
133
+
```
134
+
135
+
::
136
+
137
+
### Nested
138
+
139
+
To create a nested list, indent each item with four spaces.
140
+
141
+
::code-preview{class="[&>div]:*:my-0"}
142
+
143
+
- I'm a list item.
144
+
- I'm a nested list item.
145
+
- I'm another nested list item.
146
+
- I'm another list item.
147
+
148
+
#code
149
+
150
+
```mdc
151
+
- I'm a list item.
152
+
- I'm a nested list item.
153
+
- I'm another nested list item.
154
+
- I'm another list item.
155
+
```
156
+
157
+
::
158
+
159
+
## Tables
160
+
161
+
To create a table, use three or more hyphens (`---`) to separate each column.
To create a blockquote, add a `>` in front of a paragraph.
188
+
189
+
::code-preview{class="[&>div]:*:my-0"}
190
+
191
+
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
192
+
193
+
#code
194
+
195
+
```mdc
196
+
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
197
+
```
198
+
199
+
::
200
+
201
+
### Multiline
202
+
203
+
::code-preview{class="[&>div]:*:my-0"}
204
+
205
+
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
206
+
>
207
+
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
208
+
209
+
#code
210
+
211
+
```mdc
212
+
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
213
+
>
214
+
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
0 commit comments