# veui-theme-blue

Theme Blue for VEUI.

## Installation

```
npm install veui-theme-blue --save
```

### Load base styles for VEUI

There are two ways to load the base stylesheet:

1. Direct `import` in JavaScript

  ```js
  import 'veui-theme-blue/common.less'
  ```

2. Import from a `<style>` block in a `.vue` file

  ```vue
  <style lang="less" src="veui-theme-blue/common.less"></style>

  <!-- OR -->

  <style lang="less">
  @import "~veui-theme-blue/common.less"
  </style>
  ```
