@ohu-mobile/core
Version:
40 lines (25 loc) • 528 B
Markdown
# ohu-mobile
> Mobile UI Component Library.
## Installation
```shell
npm install @ohu-mobile/core
# or
pnpm add @ohu-mobile/core
```
## Usage
1. Import on Demand
Strongly Recommand👇
```ts
import { Button } from '@ohu-mobile/core';
```
Or Manually import
```ts
import Button from '@ohu-mobile/core/lib/Button';
```
2. Import all components
```ts
import Vue from 'vue';
import Ohu from '@ohu-mobile/core';
import '@ohu-mobile/core/dist/ohu-mobile.css';
Vue.use(Ohu);
```