Poppy UI integration for Vue 3 apps.
npm install @poppy-ui/vue
if the command fails, check the section how to use in the root readme
The configuration is minimal and easy
// main.ts
import { PoppyVue } from '@poppy-ui/vue';
import { createApp } from 'vue';
import App from './App.vue';
import '@poppy-ui/vue/css/core.css';
import '@poppy-ui/vue/css/themes/light.always.css';
createApp(App)
.use(PoppyVue)
.mount('#app');
And your done, happy coding 🎉
See our Contributing Guide.