Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/oraphadev/vue-elastic-textarea
- Owner: oraphadev
- License: mit
- Created: 2020-05-08T03:51:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:18:58.000Z (almost 2 years ago)
- Last Synced: 2024-03-23T23:01:54.473Z (8 months ago)
- Language: JavaScript
- Size: 3.44 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 },
}```