/p5-ui

A toy persona5 ui library for vue3

Primary LanguageVue

Vue3 Persona5 UI

This project is still under development~

Document

To develop your website you could visit our document.

Preview

Simple Usage

Download

npm install p5-ui

Full Import

// In main.js
import { createApp } from 'vue'
import App from './App.vue'

import P5UI from 'p5-ui'
import 'p5-ui/dist/style.css'

const app = createApp(App)
app.use(P5UI)
app.mount('#app')

On-demand Import

// In main.js
import { createApp } from 'vue'
import App from './App.vue'

import {P5Button, P5Switch} from 'p5-ui'
import 'p5-ui/dist/style.css'

const app = createApp(App)
app.component(P5Button.name, P5Button)
app.component(P5Switch.name, P5Switch)
app.mount('#app')