jm-binguo
v1.0.3
Published
Using `npm` to install:
Readme
Install
Using npm to install:
npm i jm-commonUsing yarn or pnpm:
# with yarn
yarn add jm-common
# with pnpm
pnpm add jm-commonQuickstart
import { createApp } from 'vue';
// 1. Import the components you need
import { JmButton } from 'jm-common';
// 2. Import the components style
import 'jm-common/lib/index.css';
const app = createApp();
// 3. Register the components you need
app.use(JmButton);