


Detailed example of vue's secondary encapsulation of components based on element-plus
This article brings you relevant knowledge about vue, which mainly introduces the relevant content about the two-way binding of vue3 component secondary encapsulation data based on element-plus. In actual development , we often need to encapsulate some of our own customized components based on element-plus to facilitate the rapid construction of our current business. Let's take a look at it together. I hope it will be helpful to everyone.
[Related recommendations: javascript video tutorial, vue.js tutorial】
Based on element-plus Two-way binding of secondary encapsulated data
In actual development, we often need to encapsulate some of our own customized components based on element-plus to facilitate the rapid construction of our current business. In vue2.0, the two-way binding of parent-child component data is usually done by passing the value in props: value.sync, and using it in the child component, this.$emit("update:value", value), then we How to implement similar two-way binding of parent-child components in vue3?
In vue2, the responsiveness of data is two-way binding of data based on the Object.defineProperty object. This hijacking publish-subscribe mode cannot detect complex types of data such as objects and arrays very well. The responsiveness of vue3 data is based on the set and get methods of proxy. Compared with the hijacking of Object.defineProperty, the proxy method is more elegant.
The specific implementation ideas are as follows:
The label of the form and the corresponding selector and input box
Effect preview
The encapsulation of the el-input subcomponent baseInput.vue
<template> <div> <div>{{ props.blockName }}</div> <el-input></el-input> </div> </template> <script> import { computed } from 'vue' const props = defineProps({ blockName: { type: String, default: '' }, value: { type: String, default: '' } }) const emits = defineEmits(['update:value']) // 通过重写计算属性的set和get方法,将计算属性的结果绑定在输入框的model中 const chanValue = computed({ get: () => props.value, set: (val) => { emits('update:value', val) } }) </script>
The encapsulation of the el-select subcomponent baseSelect.vue
<template> <div> <div>{{ props.blockName }}</div> <el-select> <el-option></el-option> </el-select> </div> </template> <script> import { computed } from 'vue' const props = defineProps({ blockName: { type: String, default: '' }, value: { type: String, default: '' }, placeholder: { type: String, default: '请选择' }, options: { type: Array, default() { return [{ value: '', label: '' }] } }, // 一下三个属性配合多选使用 multiple: { type: Boolean, default: false }, filterable: { type: Boolean, default: false }, allowCreate: { type: Boolean, default: false } }) const chanValue = computed({ get: () => props.value, set: (val) => { emits('update:value', val) } }) const emits = defineEmits(['update:value']) </script>
Calls of other components
<baseinput></baseinput> <baseselect></baseselect>
Instructions
Using the computed set and get methods, you can With the two-way binding of parent and child components, you no longer have to worry about the fact that child components cannot modify the props of the parent component. The general implementation idea of other element components is the same.
Basic dialog pop-up box
Encapsulation of el-dialog subcomponent baseDialog.vue
<template> <div> <el-dialog> <div>{{props.title}}</div> <slot></slot> <template> <span> <button>取消</button> <button>确定</button> </span> </template> </el-dialog> </div> </template> <script> import { computed } from 'vue' const props = defineProps({ title: { type: String, default:'' }, isShow: { type: Boolean, default: false } }) const emits = defineEmits(['update:isShow']) const handlerCancer = () => { emits('update:isShow', false) } const handlerSubmit = () => { // dialog 点击确定按钮之前处理相关业务逻辑 emits('update:isShow', false) } const getShow = computed({ get: () => props.isShow, set: (val) => { emits('update:isShow', val) } }) </script>
Others Component call
<basedialog> <div>对应的插槽内容</div> </basedialog>
Notes
The default props name of v-model two-way binding is value. The binding like dialog is isShow. You need to declare the two-way binding after v-model. The specified props parameter name is v-model:isShow. Input boxes such as input and select are bound to value by default, so they can be ignored. If you bind other values (that is, other parameter values other than value), you need v-model:isShow statement
[Related recommendations: javascript video tutorial, vue. js tutorial】
The above is the detailed content of Detailed example of vue's secondary encapsulation of components based on element-plus. For more information, please follow other related articles on the PHP Chinese website!

Netflix mainly considers performance, scalability, development efficiency, ecosystem, technical debt and maintenance costs in framework selection. 1. Performance and scalability: Java and SpringBoot are selected to efficiently process massive data and high concurrent requests. 2. Development efficiency and ecosystem: Use React to improve front-end development efficiency and utilize its rich ecosystem. 3. Technical debt and maintenance costs: Choose Node.js to build microservices to reduce maintenance costs and technical debt.

Netflix mainly uses React as the front-end framework, supplemented by Vue for specific functions. 1) React's componentization and virtual DOM improve the performance and development efficiency of Netflix applications. 2) Vue is used in Netflix's internal tools and small projects, and its flexibility and ease of use are key.

Vue.js is a progressive JavaScript framework suitable for building complex user interfaces. 1) Its core concepts include responsive data, componentization and virtual DOM. 2) In practical applications, it can be demonstrated by building Todo applications and integrating VueRouter. 3) When debugging, it is recommended to use VueDevtools and console.log. 4) Performance optimization can be achieved through v-if/v-show, list rendering optimization, asynchronous loading of components, etc.

Vue.js is suitable for small to medium-sized projects, while React is more suitable for large and complex applications. 1. Vue.js' responsive system automatically updates the DOM through dependency tracking, making it easy to manage data changes. 2.React adopts a one-way data flow, and data flows from the parent component to the child component, providing a clear data flow and an easy-to-debug structure.

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.

The methods to implement the jump of a tag in Vue include: using the a tag in the HTML template to specify the href attribute. Use the router-link component of Vue routing. Use this.$router.push() method in JavaScript. Parameters can be passed through the query parameter and routes are configured in the router options for dynamic jumps.

There are the following methods to implement component jump in Vue: use router-link and <router-view> components to perform hyperlink jump, and specify the :to attribute as the target path. Use the <router-view> component directly to display the currently routed rendered components. Use the router.push() and router.replace() methods for programmatic navigation. The former saves history and the latter replaces the current route without leaving records.

There are two ways to jump div elements in Vue: use Vue Router and add router-link component. Add the @click event listener and call this.$router.push() method to jump.


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

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.

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use