# lvue

> 基于vue3.0,对element-plus二次封装的组件库

Latest version **0.2.3** (published 2021-04-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install lvue
pnpm add lvue
yarn add lvue
bun add lvue
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.3 |
| Published | 2021-04-20 |
| First published | 2021-01-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 14 |
| Unpacked size | 3.7 MB |
| Known vulnerabilities | 0 (+25 in 2 direct dependencies) |
| Install scripts | no |
| Author | longshao5520 |
| Maintainers | longshao5520 |
| Keywords | vue, vue3.0, lvue, ui, lvue ui |

## Links

- npm: https://www.npmjs.com/package/lvue
- npm.io page: https://npm.io/package/lvue

## Dependencies (14)

- [vue](https://npm.io/package/vue.md) ^3.0.0
- [gulp](https://npm.io/package/gulp.md) ^4.0.2
- [axios](https://npm.io/package/axios.md) ^0.21.1
- [merge2](https://npm.io/package/merge2.md) ^1.4.1
- [rimraf](https://npm.io/package/rimraf.md) ^3.0.2
- [core-js](https://npm.io/package/core-js.md) ^3.6.5
- [strip-ansi](https://npm.io/package/strip-ansi.md) ^6.0.0
- [element-plus](https://npm.io/package/element-plus.md) 1.0.2-beta.40
- [child_process](https://npm.io/package/child_process.md) ^1.0.2
- [gulp-typescript](https://npm.io/package/gulp-typescript.md) ^6.0.0-alpha.1
- [svg-sprite-loader](https://npm.io/package/svg-sprite-loader.md) ^5.2.1
- [@fortawesome/vue-fontawesome](https://npm.io/package/@fortawesome/vue-fontawesome.md) ^2.0.2
- [@fortawesome/fontawesome-svg-core](https://npm.io/package/@fortawesome/fontawesome-svg-core.md) ^1.2.34
- [@fortawesome/free-solid-svg-icons](https://npm.io/package/@fortawesome/free-solid-svg-icons.md) ^5.15.2

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.2.3 (latest) — 2021-04-20
- 0.2.2 — 2021-03-19
- 0.2.1 — 2021-03-19
- 0.1.11 — 2021-01-22
- 0.1.10 — 2021-01-22
- 0.1.9 — 2021-01-22
- 0.1.8 — 2021-01-22
- 0.1.7 — 2021-01-19
- 0.1.6 — 2021-01-19
- 0.1.5 — 2021-01-15
- 0.1.4 — 2021-01-15
- 0.1.3 — 2021-01-06
- 0.1.2 — 2021-01-03
- 0.1.1 — 2021-01-03
- 0.1.0 — 2021-01-03

## README

# lvue

## 安装

```
npm install lvue

or

yarn add lvue
```

## 完整引入

在 main.js 中写入以下内容：

### vue2.x

```
import Vue from "vue";

import lvue from "lvue";
import 'lvue/lib/lvue.css';

Vue.use(lvue);

new Vue({
  el: '#app',
  render: h => h(App)
});
```

### vue3.0

```
import { createApp } from "vue";
import App from "./App.vue";

import lvue from "lvue";
import 'lvue/lib/lvue.css';

createApp(App).use(lvue, {locale: 'zh'}).mount("#app");
```

## LICENSE

[MIT](https://github.com/longshao5520/lvue/blob/main/LICENSE)

---
_Source: https://npm.io/package/lvue · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
