(WIP) Vue3 UI components based on daisyui.
daisyui-vue is a work in progress Vue3 UI component library that is based on daisyui framework. The development progress is slow due to a busy workload.
Import All (not recommended):
import 'daisyui-vue/dist/full.css';
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');
Import On-demand (recommended):
import 'daisyui-vue/dist/full.css';
import { createApp } from 'vue';
import { Button, Modal, Drawer } from 'daisyui-vue';
const app = createApp(App);
app.component('Button', Button);
app.component('Modal', Modal);
app.component('Drawer', Drawer);
app.mount('#app');
Avoid FOUC problem when SSR:
TODOs
Naming Rules:
Responsive: