2.0.0 • Published 6 months ago

jinkoui v2.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Features

Install

Using npm to install:

# install latest Vant for Vue 3 project
npm i jk-ui

# install Vant 2 for Vue 2 project
npm i vant@latest-v2

Quickstart

import { createApp } from 'vue';
// 1. Import the components you need
import { Button } from 'jkui';
// 2. Import the components style
import 'jk-ui/lib/index.css';

const app = createApp();

// 3. Register the components you need
app.use(Button);