TailAdmin UI Kit
UI components library by VueJS and TailwindCSS.
Installation
Use the package manager npm to install TailAdmin UI Kit.
Usage
Please follow my YouTube channel for usages.
npm install tailadmin-ui-kit
import { TSwitchInput } from "tailadmin-ui-kit"
import {defineComponent} from 'vue';
export default defineComponent({
name: 'Products',
components: {TSwitchInput},
setup() {
const form = ref({
name: '',
status: false
})
return {
form
}
}
});
<t-switch-input v-model="product.status" true-color="emerald" false-color="rose" loading/>
:rocket: Components
:telescope: Other components coming soon, please check Github
Help
If you need to help more than this documentation:
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
The TailAdmin is open-sourced software licensed under the MIT license.