# vue-enter-input

> a vue enter input

Latest version **1.0.4** (published 2018-08-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-enter-input
pnpm add vue-enter-input
yarn add vue-enter-input
bun add vue-enter-input
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2018-08-13 |
| First published | 2018-04-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 87.3 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | luke-Yang |
| Maintainers | lukeyang |

## Links

- npm: https://www.npmjs.com/package/vue-enter-input
- npm.io page: https://npm.io/package/vue-enter-input

## Dependencies (1)

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

## Recent versions

- 1.0.4 (latest) — 2018-08-13
- 1.0.3 — 2018-08-13
- 1.0.2 — 2018-04-26
- 1.0.1 — 2018-04-26
- 1.0.0 — 2018-04-26

## README

# vue-enter-input

> a vue enter input
输入框中输入内容，之后回车，能够再次输入
## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build
```

For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).

## 安装

```JS
npm install vue-enter-input --save-dev
```
## 使用

```js
// ES6
import VueEnterInput from 'vue-enter-input'
// require
var vueEnterInput = require('vueEnterInput')

Vue.use(vueEnterInput)

// 或者直接使用script导入
<script src="../node_modules/vue-enter-input/dist/vue-enter-input.js"></script>

// 作为组件的方式使用
<vue-enter-input></vue-enter-input>
```

### 配置

```html
   <vue-enter-input
   @get-data='getData'
    </vue-enter-input>
```
methods:{
getData(data){
console.log(data)
}
}

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