2.0.1 • Published 8 months ago

v-autosize v2.0.1

Weekly downloads
438
License
MIT
Repository
github
Last release
8 months ago

v-autosize

NPM Package Minified Size Build Status License: MIT

Lightweight Vue 3 wrapper for autosize. Use v-autosize directive on the textarea element to make it automatically adjust height to fit text.

Using Vue 2?

Check old version v-autosize@1

Install

npm install v-autosize

Register

Register directive locally in the component

import autosize from 'v-autosize';

// Your component
export default {
    directives: {
        autosize,
    }
}

Or register directive globally in the root Vue instance

import { createApp } from 'vue'
import autosizePlugin from 'v-autosize/src/plugin.js';

const app = createApp({})
app.use(autosizePlugin)

Use

Use v-autosize directive on the textarea element

<textarea v-autosize></textarea>

Comparison

  • This module: Minified Size Minified Size
  • vue-autosize: Minified Size Minified Size Doesn't support Vue 3, autosize-input included, not maintained.
  • vue-textarea-autosize: Minified Size Minified Size Doesn't support Vue 3. A component is used instead of a directive.

License

MIT License

2.0.1

8 months ago

2.0.0

10 months ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

7 years ago