# pimax-ui npm package

## Usage
### Install
```bash
npm run installall
```

### Dev
npm run dev:play

### Publish
```bash
npm run pub
```

### Dependencies
1. Install dependencies:
```bash
npm install babel-plugin-component -D
"@babel/preset-env": "^7.14.7",
"babel-plugin-component": "^1.1.1",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
```

2. Add follow entry to babel config file:
```json
# .babelrc
{
  "presets": ["@babel/preset-env"],
  "plugins": [
    [
      "component",
      {
        "libraryName": "pimax-ui",
        "styleLibraryName": "theme-chalk"
      }
    ]
  ]
}
```