import Vue from 'vue' export default { title: 'Class Components' } export const typography = () => (Vue.extend({ render(h) { return (

Headings

H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading

Text Heading Styles

H1 Text
H2 Text
H3 Text
H4 Text
H5 Text
H6 Text

Links

Default links are accessible blue.
Quiet links have no color.

Text

Just some text
.text-strong Text is bold.
Text primary
.text-muted is ??
.text-secondary is ??

Color Text

Success text.
Info text.
Warning text.
Danger text.

Backgrounds

Success background.
Info background.
Warning background.
Danger background.

Alerts

Default alert
Info alert
Success alert
Warning alert
Danger alert
) } })) export const buttons = () => (Vue.extend({ render(h) { return (
Link
Default
Default
Default

Disabled

Link
) } })) export const pagination = () => (Vue.extend({ render(h) { return ( ) } })) export const cards = () => (Vue.extend({ render(h) { return (
220 Projects New Project
Card content text.
) } })) export const tabs = () => (Vue.extend({ render(h) { return (
) } })) export const inputs = () => (Vue.extend({ render(h) { return (
) } })) export const panels = () => (Vue.extend({ render(h) { return (
Default
Panel body
Primary
Panel body
Primary
Panel body
Success
Panel body
Success
Panel body
Success
Panel body
) } }))