Prose Components
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
Code
[Link](/api/components/prose)
ProseBlockquote
Code
> Block quote
ProseCode
Code
```javascript export default () => { console.log('Code block') } ```
Check out the highlight options for more about the syntax highlighting.
ProseCodeInline
code inline
.
Code
`code inline`. `const codeInline: string = 'highlighted code inline'`{lang="ts"}
ProseH1
Code
# H1 Heading
ProseH2
Code
## H2 Heading
ProseH3
Code
## H3 Heading
ProseH4
Code
## H4 Heading
ProseH5
Code
## H5 Heading
ProseH6
Code
## H6 Heading
ProseHr
Code
Divider under.---Divider above.
ProseImg
Code
![A Cool Image](/preview.png)
ProseUl
Code
- Just- An- Unordered- List
ProseLi
Code
- List element
ProseOl
Code
1. Foo2. Bar3. Baz
ProseP
Code
Just a paragraph.
ProseStrong
Code
**Just a strong paragraph.**
ProseEm
Code
_Just an italic paragraph._
ProseTable
Code
| 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.