<h1 align="center">
  XiVui
</h1>

<p align="center">Vue Material Component Framework</p>

<p align="center">
  <a href="https://www.npmjs.org/package/xivui">
    <img src="https://img.shields.io/npm/v/xivui.svg" />
  </a>
</p>

## Docs

[https://xivui.hxin.link](https://xivui.hxin.link)

## Browsers support

| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Opera | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png" alt="Electron" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Electron |
| --------- | --------- | --------- | --------- | --------- | --------- |
| Edge| last 2 versions| last 2 versions| last 2 versions| last 2 versions| last 2 versions


## Install

### Using Package Manager

Using npm

```bash
$ npm install xivui --save
```

Using yarn

```bash
$ yarn add xivui
```

Using pnpm

```bash
$ pnpm install xivui --save
```

### Using a script tag for global use


#### unpkg

```html
<head>
  <!-- Import style -->
  <link rel="stylesheet" href="https://unpkg.com/xivui/dist/index.css" />
  <!-- Import Vue 3 -->
  <script src="https://unpkg.com/vue@3"></script>
  <!-- Import component library -->
  <script src="https://unpkg.com/xivui/dist/index.js"></script>
</head>
```

#### jsDelivr

```html
<head>
  <!-- Import style -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xivui/dist/index.css" />
  <!-- Import Vue 3 -->
  <script src="https://cdn.jsdelivr.net/npm/vue@3"></script>
  <!-- Import component library -->
  <script src="https://cdn.jsdelivr.net/npm/xivui/dist/index.js"></script>
</head>
```
