Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 882 Bytes

readme.md

File metadata and controls

39 lines (30 loc) · 882 Bytes

Poppy

Poppy UI - Vue

Poppy UI integration for Vue 3 apps.

Install

npm install @poppy-ui/vue

if 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.