A list of Prose components currently implemented.
Here is a list of all the Prose components currently implemented.
To overwrite a prose component, create a component with the same name in your project components/content/
directory (ex: components/content/ProseA.vue
)
ProseA
[Link](/api/components/prose)
ProseBlockquote
> Block quote
ProseCode
```javascript export default () => { console.log('Code block') } ```
ProseCodeInline
code inline
.
`code inline`. `const codeInline: string = 'highlighted code inline'`{lang="ts"}
ProseH1
# H1 Heading
ProseH2
## H2 Heading
ProseH3
## H3 Heading
ProseH4
## H4 Heading
ProseH5
## H5 Heading
ProseH6
## H6 Heading
ProseHr
Divider under.---Divider above.
ProseImg

ProseUl
- Just- An- Unordered- List
ProseLi
- List element
ProseOl
1. Foo2. Bar3. Baz
ProseParagraph
Just a paragraph.
ProseStrong
**Just a strong paragraph.**
ProseEm
_Just an italic paragraph._
ProseTable
| Key | Type | Description ||---------|--------| -----|| 1 | Wonderful | Table || 2 | Wonderful | Data || 3 | Wonderful | Website |
ProseTbody
Included in ProseTable example.
ProseTd
Included in ProseTable example.
ProseTh
Included in ProseTable example.
ProseThead
Included in ProseTable example.
ProseTr
Included in ProseTable example.