@poppy-ui/vue
v0.5.6
Published
Vue specific wrapper for @poppy-ui/core
Downloads
122
Maintainers
Readme
Poppy UI integration for Vue 3 apps.
Install
npm install @poppy-ui/vueif the command fails, check the section how to use in the root readme
Configuration
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 🎉
Contributing
See our Contributing Guide.
