Table of Contents
管理员页面
Home Web Front-end Vue.js How to perform permission control and login verification in Vue project

How to perform permission control and login verification in Vue project

Oct 09, 2023 pm 12:25 PM
Authorization Login verification (authentication) vue item (vue)

How to perform permission control and login verification in Vue project

How to perform permission control and login verification in a Vue project requires specific code examples

In a Vue project, permission control and login verification are very important functions. Proper permission control and login verification can ensure that users can only access pages for which they have permission, and protect user data security. This article will introduce in detail how to implement permission control and login verification in the Vue project, and give specific code examples.

Step 1: Introduce routing and state management

First, we need to use the routing and state management provided by Vue to implement permission control and login verification. We can use Vue Router to manage page routing and Vuex to manage user status.

Introduce and configure Vue Router and Vuex in the project's entry file main.js:

import Vue from 'vue'
import VueRouter from 'vue-router'
import Vuex from 'vuex'
import routes from './router/index.js' // 引入路由配置文件
import store from './store/index.js' // 引入Vuex配置文件

Vue.use(VueRouter)
Vue.use(Vuex)

const router = new VueRouter({
  routes
})

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

Create a # in the router folder ##index.js file, used to configure routing information:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/views/Home.vue'
import Login from '@/views/Login.vue'
import Admin from '@/views/Admin.vue'
import Dashboard from '@/views/Dashboard.vue'
import Users from '@/views/Users.vue'
import NotFound from '@/views/NotFound.vue'

Vue.use(Router)

export default new Router({
  mode: 'history',
  routes: [
    {
      path: '/',
      name: 'home',
      component: Home
    },
    {
      path: '/login',
      name: 'login',
      component: Login
    },
    {
      path: '/admin',
      name: 'admin',
      component: Admin,
      children: [
        {
          path: '',
          name: 'dashboard',
          component: Dashboard
        },
        {
          path: 'users',
          name: 'users',
          component: Users
        }
      ]
    },
    {
      path: '*',
      name: 'notfound',
      component: NotFound
    }
  ]
})
Copy after login

Create an

index.js file in the store folder, used to configure Vuex state management:

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    user: null,
    isLoggedIn: false
  },
  mutations: {
    SET_USER(state, user) {
      state.user = user
    },
    SET_LOGGED_IN(state, value) {
      state.isLoggedIn = value
    }
  },
  actions: {
    login({ commit }, user) {
      // 在这里进行登录验证的逻辑
      // 成功后设置用户信息和登录状态
      commit('SET_USER', user)
      commit('SET_LOGGED_IN', true)
    },
    logout({ commit }) {
      // 退出登录,清除用户信息和登录状态
      commit('SET_USER', null)
      commit('SET_LOGGED_IN', false)
    }
  }
})
Copy after login

The second step: implement the login page

The next step is to implement the login page, where the user logs in. We can add a form in the

Login.vue component for users to enter their username and password and submit it.

<template>
  <div class="login">
    <form @submit.prevent="submit">
      <input type="text" v-model="username" placeholder="请输入用户名">
      <input type="password" v-model="password" placeholder="请输入密码">
      <button type="submit">登录</button>
    </form>
  </div>
</template>

<script>
export default {
  data() {
    return {
      username: '',
      password: ''
    }
  },
  methods: {
    submit() {
      // 在这里调用登录接口进行验证
      // 异步返回结果后触发登录操作
      this.$store.dispatch('login', {
        username: this.username,
        password: this.password
      }).then(() => {
        // 登录成功后跳转到首页或其他页面
        this.$router.push('/')
      }).catch(() => {
        // 登录失败逻辑处理
      })
    }
  }
}
</script>
Copy after login

Step 3: Implement login verification and permission control

Next, we need to perform corresponding logic processing in the pages that require login verification and permission control. For example, in the

Admin.vue component, we can perform login verification and permission control logic in the created hook function.

<template>
  <div class="admin">
    <h1 id="管理员页面">管理员页面</h1>
    <!-- 其他内容... -->
  </div>
</template>

<script>
export default {
  created() {
    if (!this.$store.state.isLoggedIn) {
      // 未登录状态,跳转到登录页面
      this.$router.push('/login')
    } else {
      // 已登录状态,进行权限控制
      if (!this.$store.state.user.isAdmin) {
        // 非管理员用户,无权限访问
        this.$router.push('/404')
      }
    }
  }
}
</script>
Copy after login
In this example, we determine the user's login status and permissions in the

created hook function, and perform corresponding jump operations based on the judgment results.

This is an example of implementing permission control and login verification in a basic Vue project. By properly configuring routing and status management, and writing corresponding logic processing, we can implement user login verification and permission control functions. Of course, in actual projects, more detailed processing needs to be carried out according to specific requirements, such as adding routing guards, interaction of front-end and back-end interfaces, etc. I hope the examples in this article can help readers better understand and apply permission control and login verification.

The above is the detailed content of How to perform permission control and login verification in Vue project. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the method of converting Vue.js strings into objects? What is the method of converting Vue.js strings into objects? Apr 07, 2025 pm 09:18 PM

Using JSON.parse() string to object is the safest and most efficient: make sure that strings comply with JSON specifications and avoid common errors. Use try...catch to handle exceptions to improve code robustness. Avoid using the eval() method, which has security risks. For huge JSON strings, chunked parsing or asynchronous parsing can be considered for optimizing performance.

Is vue.js hard to learn? Is vue.js hard to learn? Apr 04, 2025 am 12:02 AM

Vue.js is not difficult to learn, especially for developers with a JavaScript foundation. 1) Its progressive design and responsive system simplify the development process. 2) Component-based development makes code management more efficient. 3) The usage examples show basic and advanced usage. 4) Common errors can be debugged through VueDevtools. 5) Performance optimization and best practices, such as using v-if/v-show and key attributes, can improve application efficiency.

Is Vue used for frontend or backend? Is Vue used for frontend or backend? Apr 03, 2025 am 12:07 AM

Vue.js is mainly used for front-end development. 1) It is a lightweight and flexible JavaScript framework focused on building user interfaces and single-page applications. 2) The core of Vue.js is its responsive data system, and the view is automatically updated when the data changes. 3) It supports component development, and the UI can be split into independent and reusable components.

Vue.js vs. React: Project-Specific Considerations Vue.js vs. React: Project-Specific Considerations Apr 09, 2025 am 12:01 AM

Vue.js is suitable for small and medium-sized projects and fast iterations, while React is suitable for large and complex applications. 1) Vue.js is easy to use and is suitable for situations where the team is insufficient or the project scale is small. 2) React has a richer ecosystem and is suitable for projects with high performance and complex functional needs.

How to use bootstrap in vue How to use bootstrap in vue Apr 07, 2025 pm 11:33 PM

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

How to add functions to buttons for vue How to add functions to buttons for vue Apr 08, 2025 am 08:51 AM

You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

How to reference js file with vue.js How to reference js file with vue.js Apr 07, 2025 pm 11:27 PM

There are three ways to refer to JS files in Vue.js: directly specify the path using the &lt;script&gt; tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

How to use watch in vue How to use watch in vue Apr 07, 2025 pm 11:36 PM

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

See all articles