The example in this article shares the specific code of VueJS to implement the user management system for your reference. The specific content is as follows
Source code
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>用户管理系统</title> <script src="js/jquery.js"></script> <script src="js/bootstrap.js"></script> <script src="js/vue.js"></script> <link rel="stylesheet" href="css/bootstrap.css" type="text/css"> <script> $(function () { let vm = new Vue({ el: '#app', data: { user: {}, users: [ {name: 'Switch', age: 25, email: 'switchvov@163.com'}, {name: 'Kitty', age: 25, email: 'kitty@163.com'}, ], nowIndex: -1, // 当前要删除项的索引 delIndexes: [], // 删除项索引列表 selectAll: false, // 删除所有 disableDelSelect: true, // 关闭删除选项 modalTarget: '', modalToggle: '' }, methods: { addUser: function () { this.users.push(this.user); this.user = {}; }, deleteUser: function () { if (this.delIndexes.length > 0) { // 从大到小排序,不排序则会出现删除错乱 this.delIndexes.sort(function (a, b) { return b - a; }); for (let i = 0; i < this.delIndexes.length; i++) { this.users.splice(this.delIndexes[i], 1); } this.delIndexes = []; this.selectAll = false; return; } if (this.nowIndex === -1) { this.users = []; return; } this.users.splice(this.nowIndex, 1); }, toggleAll: function () { if (this.selectAll) { let length = this.users.length; this.delIndexes = []; for (let i = 0; i < length; i++) { this.delIndexes.push(i); } return; } this.delIndexes = []; } }, watch: { delIndexes: function () { if (this.delIndexes.length > 0) { this.disableDelSelect = false; this.modalTarget = '#del'; this.modalToggle = 'modal'; return; } this.disableDelSelect = true; } } }); }); </script> </head> <body> <p id="app" class="container"> <h2 id="添加用户">添加用户</h2> <form class="form-horizontal"> <p class="form-group"> <label for="name" class="control-label col-sm-2 col-sm-offset-2">姓 名:</label> <p class="col-sm-6"> <input type="text" class="form-control" id="name" v-model="user.name" placeholder="请输入姓名"> </p> </p> <p class="form-group"> <label for="age" class="control-label col-sm-2 col-sm-offset-2">年 龄:</label> <p class="col-sm-6"> <input type="text" class="form-control" id="age" v-model="user.age" placeholder="请输入年龄"> </p> </p> <p class="form-group"> <label for="email" class="control-label col-sm-2 col-sm-offset-2">邮 箱:</label> <p class="col-sm-6"> <input type="text" class="form-control" id="email" v-model="user.email" placeholder="请输入邮箱"> </p> </p> <p class="form-group text-center"> <input type="button" value="添 加" class="btn btn-primary" @click="addUser"> <input type="reset" value="重 置" class="btn btn-primary"> </p> </form> <br/> <table class="table table-bordered table-hover"> <caption class="h3 text-center text-info">用户列表</caption> <thead> <tr> <th class="text-center"> <input type="checkbox" @click="toggleAll" v-model="selectAll"> </th> <th class="text-center">序号</th> <th class="text-center">姓名</th> <th class="text-center">年龄</th> <th class="text-center">邮箱</th> <th class="text-center">操作</th> </tr> </thead> <tbody> <tr v-for="(user, index) in users" class="text-center"> <td> <input type="checkbox" :value="index" :id="index" v-model="delIndexes" @click="selectAll = false"> </td> <td>{{ index+1 }}</td> <td>{{ user.name }}</td> <td>{{ user.age }}</td> <td>{{ user.email }}</td> <td> <button class="btn btn-danger" data-toggle="modal" data-target="#del" @click="nowIndex = index;delIndexes=[]"> 删除 </button> </td> </tr> <tr> <td colspan="6" class="text-right"> <button class="btn btn-danger" data-toggle="modal" data-target="#del" @click="nowIndex = -1;delIndexes=[]"> 删除所有 </button> <button class="btn btn-danger" :data-toggle="modalToggle" :data-target="modalTarget" :class="{disabled:disableDelSelect}"> 删除选中 </button> </td> </tr> </tbody> </table> <!-- 弹出框 --> <p class="modal" id="del"> <p class="modal-dialog"> <p class="modal-content"> <p class="modal-header"> <button class="close" data-dismiss="modal"> <span>×</span> </button> <h4 class="modal-title" v-show="delIndexes.length > 0"> 确认要删除用户 <span v-for="(value, index) in delIndexes"> {{ users[value].name }} <span v-if="index < delIndexes.length - 1">、</span> </span> 吗? </h4> <h4 class="modal-title" v-show="delIndexes.length === 0 && nowIndex !== -1"> 确认要删除用户{{ users[nowIndex] ? users[nowIndex].name : '' }}吗? </h4> <h4 class="modal-title" v-show="delIndexes.length === 0 && nowIndex === -1"> 确认要删除所有用户吗? </h4> </p> <p class="modal-body text-center"> <button class="btn btn-primary" data-dismiss="modal">取消</button> <button class="btn btn-primary" data-dismiss="modal" @click="deleteUser">确认</button> </p> </p> </p> </p> </p> </body> </html>
GitHub :vue-user-manager
Related learning recommendations: javascript video tutorial
The above is the detailed content of VueJS method to implement user management system. For more information, please follow other related articles on the PHP Chinese website!

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

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
