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
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 (
Disabled
)
}
}))
export const pagination = () => (Vue.extend({
render(h) {
return (
)
}
}))
export const cards = () => (Vue.extend({
render(h) {
return (
)
}
}))
export const tabs = () => (Vue.extend({
render(h) {
return (
)
}
}))
export const inputs = () => (Vue.extend({
render(h) {
return (
)
}
}))
export const panels = () => (Vue.extend({
render(h) {
return (
)
}
}))