@datadayrepos/ddtw-vue
v0.1.8
Published
<div align="center"> <h1>@datadayrepos/ddtw-vue</h1> </div>
Readme
Vue TW UI components built on the flow byte library with customizations for external dependencies and some simplifications.
Use the original unless aspecial need for this.
@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
flowbiteas a dependency usingnpmby running the following command:
npm i flowbite @datadayrepos/ddtw-vue- Require
flowbiteas a plugin inside thetailwind.config.jsfile:
module.exports = {
content: [
...,
'node_modules/@datadayrepos/ddtw-vue/**/*.{js,jsx,ts,tsx}'
],
plugins: [..., require('flowbite/plugin')],
};