How to use Nuxt Plugins

Lance Watanabe
Apr 27, 2021
  1. Download the plugin
$ npm i -S vue-textarea-autosize 

2. Create a vueTextareaAutosize.js file in the /plugins folder. Import your plugin then pass it into Vue.use()

import Vue from 'vue'
import VueTextareaAutosize from 'vue-textarea-autosize'
Vue.use(VueTextareaAutosize)

3. In nuxt.config.js, add ”~plugins/vueTextareaAutosize.js” to the plugins array.

plugins: [..."~plugins/vueTextareaAutosize.js"]

4. Rebuild your application

npm run dev

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response