@datadayrepos/ddtw-vue
v0.1.6-beta.16
Published
<div align="center"> <h1>@datadayrepos/ddtw-vue</h1> </div>
Downloads
2
Readme
@datadayrepos/ddtw-vue
is an open source collection of UI components, built in Vue, with utility classes from Tailwind CSS that you can use as a starting point for user interfaces and websites.
Table of Contents
Documentation
Documentation for @datadayrepos/ddtw-vue
is not yet finished.
Getting started
To use @datadayrepos/ddtw-vue
, you just need to setup flowbite
normally and install @datadayrepos/ddtw-vue
from npm
.
flowbite
can be included as a plugin into an existing Tailwind CSS project.
Require via npm
Make sure that you have Node.js and Tailwind CSS installed.
- Install
flowbite
as a dependency usingnpm
by running the following command:
npm i flowbite @datadayrepos/ddtw-vue
- Require
flowbite
as a plugin inside thetailwind.config.js
file:
module.exports = {
content: [
...,
'node_modules/@datadayrepos/ddtw-vue/**/*.{js,jsx,ts,tsx}'
],
plugins: [..., require('flowbite/plugin')],
};