Skip to content

shrpne/v-autosize

Repository files navigation

v-autosize

NPM Package Minified Size Build Status License: MIT

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

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 Vue from 'vue';
import autosize from 'v-autosize/dist/plugin';

Vue.use(autosize);

Use

Use v-autosize directive on the textarea element

<textarea v-autosize></textarea>

Comparison

License

MIT License