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.
Documentation for @datadayrepos/ddtw-vue is not yet finished.
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.
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')],
};