3.1.1 • Published 4 years ago

vue-router-middleware-plugin v3.1.1

Weekly downloads
36
License
MIT
Repository
github
Last release
4 years ago

Vue Router Middleware Plugin

A vue-router middleware pipeline.

npm version Build Status code cove Codacy Badge vue-router-middleware-plugin

The plugin utilizes vue-router navigation guards to implement easy to use, readable and more organized middlewares for your routes.

Installation

Install using NPM

npm i -S vue-router-middleware-plugin

Install using Yarn

yarn add vue-router-middleware-plugin

Get Started in 3 Easy Steps

  1. Register middleware plugin in your app.

    import Vue from 'vue'
    import MiddlewarePlugin from 'vue-router-middleware-plugin'
    import router from '@/path-to-router'
    
    Vue.use(MiddlewarePlugin, router)
  2. Create a middleware function.

    import store from '@/path-to-store'
    
    export default ({ to, from, redirect }) => {
      if (!store.getters.isLoggedIn) {
        redirect('/login')
      }
    }
  3. Attach middleware to a route.

    import AuthMiddleware from '@/path-to-auth-middleware'
    
    export default new VueRouter({
      routes: [
        {
          path: '/',
          meta: {
            middleware: AuthMiddleware
          },
          .
          .
        },

Note: You may attach multiple middlewares to a route.

  {
    path: '/login',
    meta: {
      middleware: [LoggerMiddleware, AnalyticsMiddleware]
    },
    .
    .
  },

Easy as that to get started.

:eyes: For advanced features like global middlewares and middleware context continue to Documentations.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

3.1.1

4 years ago

3.1.0

4 years ago

3.0.0

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

2.0.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.0

4 years ago

0.1.0-beta.1

4 years ago

0.1.0-beta.0

4 years ago