Installation

Quick Start

If you’re starting a new site, you can use the nuxtent starter template.

$ vue init nuxt-community/nuxtent-starter my-site
$ cd my-site
# install dependencies
$ npm install # Or yarn install

Module Installation

Install nuxtent via npm or yarn.

Then, register the module inside nuxt.config.js:

module.exports = {
  modules: [
    'nuxtent'
  ]
}

Note: @nuxtjs/axios` is a peer dependency so you will need to have it installed, as well.