2.1.0 • Published 6 years ago

nuxtjs-extensions v2.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

NuxtJS Extensions

A bunch of additional Nuxt modules. 💚

Setup

npm install nuxtjs-extensions

Usage

  • Inside nuxt.config.js add the following:
{
  modules: [
    [
      'nuxtjs-extensions/typescript',
      {
        tsconfig: path.resolve(/* tsconfig.json */),
        tslint: path.resolve(/* tslint.json */)
      }
    ],
    [
      'nuxtjs-extensions/vuetify',
      {
        css: false, // disable this and use CDN
        theme: {
          primary: '#3f51b5',
          secondary: '#757de8',
          accent: '#ff4081',
          error: '#F44336',
          warning: '#ff9800',
          info: '#2196F3',
          success: '#4CAF50'
        }
      }
    ],
    ['nuxtjs-extensions/vee-validate', { // specify vee-validate options }]
  ]
}

From 😖

import { Component, Emit, Inject, Model, Prop, Provide, Watch, Vue } from 'vue-property-decorator';
import { State, Getter, Action, Mutation, namespace } from 'vuex-class';

To 😎

import {
  Component,
  Emit,
  Inject,
  Model,
  Prop,
  Provide,
  Watch,
  Vue,
  State,
  Getter,
  Action,
  Mutation,
  namespace
} from 'nuxtjs-extensions';
2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.8.0

6 years ago

1.7.0

6 years ago

1.6.2

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago