https://github.com/oraphadev/vue-elastic-textarea
Simple elastic textarea component for Vue.js
https://github.com/oraphadev/vue-elastic-textarea
Last synced: 6 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:18:58.000Z (over 2 years ago)
- Last Synced: 2025-04-06T16:58:27.421Z (3 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
## 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 },
}```