# @yuns/ui

> ### 完整引入

Latest version **0.0.9** (published 2023-05-05) · 0 weekly downloads

## Install

```sh
npm install @yuns/ui
pnpm add @yuns/ui
yarn add @yuns/ui
bun add @yuns/ui
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.9 |
| Published | 2023-05-05 |
| First published | 2023-05-05 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 9 |
| Unpacked size | 286.7 KB |
| Known vulnerabilities | 0 (+25 in 2 direct dependencies) |
| Install scripts | no |
| Maintainers | jiang111 |

## Links

- npm: https://www.npmjs.com/package/@yuns/ui
- npm.io page: https://npm.io/package/@yuns/ui

## Dependencies (9)

- [vue](https://npm.io/package/vue.md) ^2.6.10
- [less](https://npm.io/package/less.md) ^3.9.0
- [axios](https://npm.io/package/axios.md) ^0.18.1
- [core-js](https://npm.io/package/core-js.md) ^2.6.5
- [element-ui](https://npm.io/package/element-ui.md) 2.11.1
- [tim-js-sdk](https://npm.io/package/tim-js-sdk.md) ^2.15.0
- [less-loader](https://npm.io/package/less-loader.md) ^6.0.0
- [mescroll.js](https://npm.io/package/mescroll.js.md) ^1.4.2
- [sass-loader](https://npm.io/package/sass-loader.md) ^10.1.1

## Recent versions

- 0.0.9 (latest) — 2023-05-05
- 0.0.8 — 2023-05-05
- 0.0.7 — 2023-05-05

## README

# UI

### 完整引入

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

```js{2,5}
import Vue from 'vue';
import vue95 from 'vue95-ui';
import App from './App.vue';

Vue.use(vue95);

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

以上代码便完成了 的引入。

### 按需引入

如果你只希望引入部分组件，比如 Button ，那么需要在 main.js 中写入以下内容：

```js{2,5}
import Vue from 'vue';
import { Button95 } from 'vue95-ui';
import App from './App.vue';

Vue.use(Button95);

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

### 完整组件列表和引入方式

```js
import Vue from 'vue';
import {
  Button95,
  Anchor95,
} from 'vue95-ui';

Vue.use(Anchor95);
Vue.use(Button95);
```

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