(WIP) Vue3 UI components based on [daisyui](https://github.com/saadeghi/daisyui).
npm install masc-vue(WIP) Vue3 UI components based on daisyui.
Install:
``bash`
$ pnpm add masc-vueor
$ npm add masc-vueor
$ yarn add masc-vue
Import all(❌ not recommended):
`ts
// main.ts
import masc from "masc-vue";
import { createApp } from "vue";
import App from "./App.vue";
// import custom css used in the components
import "masc-vue/style.css";
const app = createApp(App);
app.use(masc); // register all components
`
Importing individual components (Globally)
`ts`
import { SCard } from "masc-vue";
app.component("card", SCard);
Importing components locally
` This is card bodyts``