# vue-common-components-c

> > vue3 组件库

Latest version **1.0.3** (published 2023-11-23) · ISC license · 0 weekly downloads

## Install

```sh
npm install vue-common-components-c
pnpm add vue-common-components-c
yarn add vue-common-components-c
bun add vue-common-components-c
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2023-11-23 |
| First published | 2023-11-23 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | ESM |
| Node | >= 16 |
| Dependencies | 1 |
| Unpacked size | 32.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | ChenQiang |
| Maintainers | chenhuatun |
| Keywords | typescript, vue, vue3, keep-alive, KeepAlive |

## Links

- npm: https://www.npmjs.com/package/vue-common-components-c
- npm.io page: https://npm.io/package/vue-common-components-c

## Dependencies (1)

- [vue](https://npm.io/package/vue.md) ^3.3.8

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2023-11-23
- 1.0.2 — 2023-11-23
- 1.0.1 — 2023-11-23
- 1.0.0 — 2023-11-23

## README

# vue-common-components

> vue3 组件库

## Project setup
> node version >= 16.x.x
```
npm install
```

### Compiles and hot-reloads for node
```
npm run serve
```

## 组件

### 1. KeepAliveC

> 功能说明：基于vue内置组件，增加 `catchKey` 参数，可自定义缓存时使用的组件属性

组件使用示例.vue

仅缓存 `testKey="testKey1"` 的组件
```html
<template>
  <select v-model="value">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
  </select>
  <KeepAlive2 catchKey="testKey" :includes="['testKey1']">
    <test v-if="value === '1'" testKey="testKey1">box1</test>
    <test v-else-if="value === '2'" testKey="testKey2">box2</test>
    <test v-else testKey="testKey3">box3</test>
  </KeepAlive2>
</template>

<script>
export default {
  data() {
    return {
      value: '1'
    };
  },
  components: { KeepAlive2, test },
}
</script>
```
API

| 参数 | 说明 | 默认值 |
| --- | --- | --- |
| catchKey | 缓存对应的组件props参数key，不填则默认使用组件name进行缓存判断 | - |
| includes | 缓存的key值。同keep-alive组件includes | - |
| exclude | 不缓存的key值。同keep-alive组件exclude | - |
| max | 最大缓存组件数量。同keep-alive组件max | 10 |

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