


How to use Vue and Element-UI to implement data addition, deletion, modification and query functions
How to use Vue and Element-UI to implement data addition, deletion, modification and query functions
Introduction:
Vue and Element-UI are currently very popular and practical front-end development tools. Their combination allows us to Easily implement data addition, deletion, modification and query functions. This article will introduce how to use Vue and Element-UI to implement this function, and give corresponding code examples.
1. Preparation
Before starting to use Vue and Element-UI, we need to ensure that they have been installed. You can install it through the following command:
npm install vue npm install element-ui
2. Create the project
First, we need to create a Vue project and introduce Element-UI into the project. You can create and initialize a Vue project through the following commands:
vue init webpack myproject cd myproject npm install
Then, introduce Element-UI in the main.js
file:
import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; Vue.use(ElementUI);
3. Create a data list Page
In the created Vue project, we can create a new component to display the data list. You can create a new List.vue
file, and then write the following code in it:
<template> <div> <el-table :data="dataList"> <el-table-column prop="name" label="Name"></el-table-column> <el-table-column prop="age" label="Age"></el-table-column> <el-table-column prop="gender" label="Gender"></el-table-column> <el-table-column label="Operation"> <template slot-scope="scope"> <el-button type="primary" icon="el-icon-edit" @click="editData(scope.$index)">Edit</el-button> <el-button type="danger" icon="el-icon-delete" @click="deleteData(scope.$index)">Delete</el-button> </template> </el-table-column> </el-table> </div> </template> <script> export default { data() { return { dataList: [ { name: 'Tom', age: 18, gender: 'Male' }, { name: 'Jerry', age: 20, gender: 'Female' } ] }; }, methods: { editData(index) { // 编辑数据的逻辑 }, deleteData(index) { // 删除数据的逻辑 } } }; </script>
In the above code, we use <el-table>
and <el-table-column>
To display a list of data, each row of data includes name, age, gender, and operation (edit and delete). In the code example, we store data through the dataList
array, and define two methods editData
and deleteData
to handle editing and deletion operations. You can modify and extend these methods according to your actual needs.
4. Create the Add Data Page
In addition to displaying the data list, we also need a page to add new data. You can create a new Add.vue
file, and then write the following code in it:
<template> <div> <el-form :model="formData" :rules="formRules" ref="form"> <el-form-item label="Name" prop="name"> <el-input v-model="formData.name"></el-input> </el-form-item> <el-form-item label="Age" prop="age"> <el-input-number v-model="formData.age"></el-input-number> </el-form-item> <el-form-item label="Gender" prop="gender"> <el-radio-group v-model="formData.gender"> <el-radio label="Male"></el-radio> <el-radio label="Female"></el-radio> </el-radio-group> </el-form-item> <el-form-item> <el-button type="primary" @click="addData">Add</el-button> </el-form-item> </el-form> </div> </template> <script> export default { data() { return { formData: { name: '', age: '', gender: 'Male' }, formRules: { name: [ { required: true, message: 'Name is required', trigger: 'blur' } ], age: [ { required: true, message: 'Age is required', trigger: 'blur' } ] } }; }, methods: { addData() { this.$refs.form.validate((valid) => { if (valid) { // 添加数据的逻辑 } }); } } }; </script>
In the above code, we used <el-form>
, <el-form-item>
, <el-input>
, <el-input-number>
and <el-radio>
and other components to create a form page. Users can fill in their name, age, and gender in the form and add the data to the data list by clicking the "Add" button. In the code example, we use the formData
object to store form data, and define formRules
to set the validation rules for form fields. The validation of the form can be triggered by calling the validate
method, and the logic of adding data will be executed after the validation is passed.
5. Integrated page and routing configuration
In order to access the above two pages, we need to configure routing in the src/router/index.js
file. The modified index.js
file is as follows:
import Vue from 'vue' import Router from 'vue-router' import List from '@/components/List' import Add from '@/components/Add' Vue.use(Router) export default new Router({ routes: [ { path: '/', redirect: '/list' }, { path: '/list', name: 'List', component: List }, { path: '/add', name: 'Add', component: Add } ] })
With the above configuration, we can view the data list page by accessing http://localhost:8080/list
, view the add data page by visiting http://localhost:8080/add
. You can also modify the routing configuration according to your own needs.
6. Summary
Through the introduction of this article, we have learned how to use Vue and Element-UI to implement the data addition, deletion, modification and query functions. We create two pages for data list and add data, and access the page through routing configuration, thereby realizing the display and addition of data. Of course, we can also modify and expand these functions according to actual needs. I hope this article will be helpful for you to use Vue and Element-UI to implement the function of adding, deleting, modifying and checking data.
Code example:
- List.vue: [Link](https://gist.github.com/gistlynx/9dd8a04f8c9e313297ad911f4fa7d07b)
- Add.vue: [Link](https://gist.github.com/gistlynx/73dc9fe6c14c006df0d40295d78793f6)
The above is the detailed content of How to use Vue and Element-UI to implement data addition, deletion, modification and query functions. For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics











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.

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.

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.

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

Netflixusesacustomframeworkcalled"Gibbon"builtonReact,notReactorVuedirectly.1)TeamExperience:Choosebasedonfamiliarity.2)ProjectComplexity:Vueforsimplerprojects,Reactforcomplexones.3)CustomizationNeeds:Reactoffersmoreflexibility.4)Ecosystema

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses <router-link to="/" component window.history.back(), and the method selection depends on the scene.

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

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values for each element; and the .map method can convert array elements into new arrays.
