mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
18 lines
283 B
Markdown
18 lines
283 B
Markdown
|
# Getting Started
|
||
|
|
||
|
## Installation
|
||
|
First install it.
|
||
|
|
||
|
```bash
|
||
|
npm install --save git+https://github.com/07akioni/naive-ui.git
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
Add the following lines in you entry point js file.
|
||
|
|
||
|
```js
|
||
|
import naive from 'naive-ui'
|
||
|
import 'naive-ui/styles/index.scss'
|
||
|
|
||
|
Vue.use(naive)
|
||
|
```
|