README
CLUI
A UI Component Library by Clinc Inc
📚 Storybook
Get Started
import '@clinc/clui/sample-config.css'
import '@clinc/clui/dist/clui.css'
import { ClButton, ClTypography } from '@clinc/clui'
export default {
name: 'my-page',
components: {
ClButton,
ClTypography
}
}
<template>
<div>
<cl-typography variant="h1">
Hello World
</cl-typography>
<cl-button>
A Button
</cl-button>
</div>
</template>