Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oraphadev/vue-elastic-textarea

Simple elastic textarea component for Vue.js
https://github.com/oraphadev/vue-elastic-textarea

Last synced: 16 days ago
JSON representation

Simple elastic textarea component for Vue.js

Awesome Lists containing this project

README

        

## Features & characteristics:
* No dependencies
* Very lean and simple

## Example
![](demo/vue-elastic-textarea.gif)

## Install & basic usage

```bash
npm install vue-elastic-textarea
```

```vue

import VueElasticTextarea from 'vue-elastic-textarea';
export default {
data() {
return {
value: "Hello, world",
};
},
components: { VueElasticTextarea },
}

```