search
HomeWeb Front-endVue.jsHow to use Vue for user login and authentication
How to use Vue for user login and authenticationAug 02, 2023 pm 05:01 PM
vue login verificationvue user authenticationvue authentication

How to use Vue for user login and authentication

Introduction:
In today's Internet era, user login and authentication are important functions of almost all web applications. As a modern JavaScript framework, Vue provides us with a simple and efficient way to manage user login and authentication. This article will show you how to use Vue to implement user login and authentication, and provide code examples.

1. Preparation:
Before we start, we need to ensure that Node.js and Vue CLI have been installed. If it is not installed yet, you can install it through the following link:
Node.js: https://nodejs.org/
Vue CLI: https://cli.vuejs.org/

2. Create a Vue project:
Use the following command to create a new Vue project:

vue create login-app

According to the prompts, select the default configuration or custom configuration to create a Vue project.

3. Set routing:
Create a new routing folder in the src directory of the Vue project and create an index.js file in it. In the index.js file, we will set up two routes: login page and home page.

// src/router/index.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import Login from '../views/Login.vue'
import Home from '../views/Home.vue'

Vue.use(VueRouter)

const routes = [
  {
    path: '/',
    name: 'Login',
    component: Login
  },
  {
    path: '/home',
    name: 'Home',
    component: Home,
    meta: { requiresAuth: true }
  }
]

const router = new VueRouter({
  mode: 'history',
  base: process.env.BASE_URL,
  routes
})

export default router

In the above code, we set up two routes, one is the login page (Login) and the other is the home page (Home). We also define a meta field to specify which routes require authentication.

4. Create view components:
Create a new views folder in the src directory of the Vue project, and create two view components, Login.vue and Home.vue, in it. Define the content and style of the login page and home page respectively.

<!-- src/views/Login.vue -->

<template>
  <div>
    <h1 id="Login">Login</h1>
    <input type="text" v-model="username" placeholder="Username">
    <input type="password" v-model="password" placeholder="Password">
    <button @click="login">Login</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      username: '',
      password: ''
    }
  },
  methods: {
    login() {
      // 在此处编写登录逻辑
    }
  }
}
</script>

<!-- src/views/Home.vue -->

<template>
  <div>
    <h1 id="Welcome-to-Home">Welcome to Home</h1>
    <button @click="logout">Logout</button>
  </div>
</template>

<script>
export default {
  methods: {
    logout() {
      // 在此处编写退出登录逻辑
    }
  }
}
</script>

In the above code, we defined two view components, Login.vue and Home.vue respectively. In the Login.vue component, we use v-model to bind the value of the input box to the username and password in data. At the same time, the login method is called when the login button is clicked to handle the user login logic. In the Home.vue component, we define a logout method to handle the user's logout logic.

5. Add authentication logic:
Create a new plugins folder in the src directory of the Vue project and create the auth.js file in it. In the auth.js file, we will write the logic to implement user login and authentication.

// src/plugins/auth.js

export default {
  install(Vue) {
    Vue.prototype.$auth = {
      isAuthenticated: false,
      login(username, password) {
        // 在此处编写用户登录验证逻辑
        if (username === 'admin' && password === 'admin') {
          this.isAuthenticated = true
          return Promise.resolve()
        } else {
          return Promise.reject(new Error('Invalid username or password'))
        }
      },
      logout() {
        // 在此处编写用户退出登录逻辑
        this.isAuthenticated = false
        return Promise.resolve()
      }
    }
  }
}

In the above code, we define an $auth object, which contains three fields and two methods. The isAuthenticated field is used to determine whether the user has logged in. The login method is used to verify whether the username and password are correct. If correct, the isAuthenticated field is set to true, otherwise an error object is returned. The logout method is used to log out and set the isAuthenticated field to false.

6. Register the auth plug-in in main.js:
Open the main.js file in the src directory of the Vue project and register the auth plug-in in it.

// src/main.js

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import auth from './plugins/auth'

Vue.config.productionTip = false

Vue.use(auth)

new Vue({
  router,
  render: h => h(App)
}).$mount('#app')

7. Authentication in the routing guard:
In the index.js file under the router folder in the src directory of the Vue project, we add a routing guard for authentication.

// src/router/index.js

// ...省略其他代码

router.beforeEach((to, from, next) => {
  const requiresAuth = to.matched.some(record => record.meta.requiresAuth)
  const isAuthenticated = Vue.prototype.$auth.isAuthenticated

  if (requiresAuth && !isAuthenticated) {
    next('/')
  } else {
    next()
  }
})

// ...省略其他代码

In the above code, we use Vue.prototype.$auth.isAuthenticated to determine whether the user is logged in. If the user tries to access a route that requires authentication, but is not logged in, redirect them to the login page.

8. Use the $auth object in the login page and home page:
In the Login.vue and Home.vue components, we can access the $auth object through this.$auth for user login. and log out operations.

<!-- src/views/Login.vue -->

<template>
  <!-- 省略其他代码 -->
  <button @click="login">Login</button>
</template>

<script>
export default {
  // 省略其他代码
  methods: {
    login() {
      this.$auth.login(this.username, this.password)
        .then(() => {
          this.$router.push('/home')
        })
        .catch(error => {
          console.error(error)
        })
    }
  }
}
</script>

<!-- src/views/Home.vue -->

<template>
  <!-- 省略其他代码 -->
  <button @click="logout">Logout</button>
</template>

<script>
export default {
  // 省略其他代码
  methods: {
    logout() {
      this.$auth.logout()
        .then(() => {
          this.$router.push('/')
        })
        .catch(error => {
          console.error(error)
        })
    }
  }
}
</script>

In the above code, we use this.$auth.login to handle user login logic, and if successful, use this.$router.push to jump to the homepage. Use this.$auth.logout to handle the user logout logic, and use this.$router.push to jump to the login page after success.

Conclusion:
Through this article, we learned how to use Vue for user login and authentication. By setting up routes, creating view components, adding authentication logic, registering auth plugins, and using $auth objects in route guards and components, we successfully implemented user login and authentication functionality. I hope this article is helpful for you to understand and use Vue for user login and authentication.

The above is the detailed content of How to use Vue for user login and authentication. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is Vuex and how do I use it for state management in Vue applications?What is Vuex and how do I use it for state management in Vue applications?Mar 11, 2025 pm 07:23 PM

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

How do I create and use custom plugins in Vue.js?How do I create and use custom plugins in Vue.js?Mar 14, 2025 pm 07:07 PM

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?Mar 14, 2025 pm 07:05 PM

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?Mar 11, 2025 pm 07:22 PM

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

How do I configure Vue CLI to use different build targets (development, production)?How do I configure Vue CLI to use different build targets (development, production)?Mar 18, 2025 pm 12:34 PM

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

How do I use tree shaking in Vue.js to remove unused code?How do I use tree shaking in Vue.js to remove unused code?Mar 18, 2025 pm 12:45 PM

The article discusses using tree shaking in Vue.js to remove unused code, detailing setup with ES6 modules, Webpack configuration, and best practices for effective implementation.Character count: 159

How do I use Vue with Docker for containerized deployment?How do I use Vue with Docker for containerized deployment?Mar 14, 2025 pm 07:00 PM

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

How can I contribute to the Vue.js community?How can I contribute to the Vue.js community?Mar 14, 2025 pm 07:03 PM

The article discusses various ways to contribute to the Vue.js community, including improving documentation, answering questions, coding, creating content, organizing events, and financial support. It also covers getting involved in open-source proje

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.