Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

tailadmin-ui-kit

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailadmin-ui-kit

VueJS UI Kit for Admin Panels

latest
Source
npmnpm
Version
1.0.27
Version published
Weekly downloads
75
837.5%
Maintainers
1
Weekly downloads
 
Created
Source

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 a component if you want to use in script block
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
        }
    }
});
<!--Use component in template block-->
<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.

Keywords

css

FAQs

Package last updated on 17 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts