
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@bitsler/vue-area-autosize
Advanced tools
A Fork of vue-textarea-autoresize with fixes and optimizations. This is a Vue component that provides textarea with automatically adjustable height and without any wrappers and dependencies
A Fork of vue-textarea-autoresize with fixes and optimizations. This is a Vue component that provides textarea with automatically adjustable height and without any wrappers and dependencies
v-model binding in parent@input.native and @change.native eventsNote
@eventname.native read moreInstall with npm
npm install @bitsler/vue-area-autosize --save
or with yarn
yarn add @bitsler/vue-area-autosize
In your main.js
import Vue from 'vue'
import VueAreaAutosize from '@bitslervue-area-autosize'
Vue.use(VueAreaAutosize)
In components
<textarea-autosize
placeholder="Type something here..."
ref="someName"
v-model="someValue"
:min-height="30"
:max-height="350"
@blur.native="onBlurTextarea"
></textarea-autosize>
Focus/blur or select content in components
this.$refs.someName.$el.focus()
this.$refs.someName.$el.blur()
this.$refs.someName.$el.select()
| Props | Required | Type | Default | Description |
|---|---|---|---|---|
| autosize | false | Boolean | true | allow to enable/disable auto resizing dynamically |
| minHeight | false | Number | null | min textarea height |
| maxHeight | false | Number | null | max textarea height |
| Name | Params | Description |
|---|---|---|
| input | value | fires on textarea content changed. part of a v-model binding. read more |
There are no slots available
FAQs
A Fork of vue-textarea-autoresize with fixes and optimizations. This is a Vue component that provides textarea with automatically adjustable height and without any wrappers and dependencies
We found that @bitsler/vue-area-autosize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.