Quick Start

Learn to quickly get started with the Piman accessible web design UI framework

Install Piman

You need to install before getting started Node.jsarrow-up-right version 18 and create a Vue 2 or Nuxt 2 project.

If you currently have many projects with different Node.js versions, we recommend learning to use nvmarrow-up-right to manage Node.js versions.

Then in the folder where you want to use it, run:

npm install @yasai/piman

Import

Vue2

//main.js
import Vue from 'vue'

import piman from "@yasai/piman";
import '@yasai/piman/dist/piman.css';
Vue.use(piman)

Nuxt 2

// nuxt.config.js
export default {
  plugins: [
    '@/plugins/piman.js',
  ],
}

Next, get to know how to use the components.

Last updated

Was this helpful?