Building a common Vue component library using Vue Demi

In this article, we learn about Vue Demi by considering its function, how it works, and how to start using it.Vue Demi is a great package with a lot of potential and practicality. I strongly recommend using it when creating the next Vue library.According to the founder Anthony Fu, Vue Demi Is a development utility that allows users to write com ...

Posted by rgpayne on Sun, 13 Feb 2022 14:44:07 +0100

Basic usage of Ant Design Vue: importing components and customizing themes on demand

introductionAs a latecomer, ant design vue is not as famous as element, the pioneer of vue component library. However, with more elements, I still see it in front of me when I start to use antv. Antv is really very different from element in interaction design and api design. I think this difference is better than element.This note is based on v ...

Posted by dbradbury on Sun, 13 Feb 2022 12:44:43 +0100

Talking about vue3 the communication of each component

Component communication is often used in front-end development. Today, let's summarize the communication of each component 1, Parent child component communication Father to son (prop) Pass from parent to child is mainly to define the prop attribute in the sub component and add the value to be passed in, for example: //Subcomponents //The te ...

Posted by Charles256 on Sat, 12 Feb 2022 05:13:06 +0100

Zhiting cloud disk - development guide web: project architecture

Here we mainly talk about the structure and technical architecture of the project, which is convenient for us to start development quickly 1. Technical structure of the project The project mainly adopts vue + webpack + vantMain purpose of the project vue-cli3 The scaffold shall be initialized, and then the structure shall be adjusted a ...

Posted by breadcom on Fri, 11 Feb 2022 14:55:12 +0100

How to quickly build your own component library for the team -- Element source code architecture

The article has been included in github , welcome to Watch and Star.brief introductionThe source code architecture of ElementUI is explained in detail, which lays a solid foundation for building the team's own component library based on ElementUI in the next step.How to quickly build your own component library for the team?Component library i ...

Posted by sharugan on Fri, 11 Feb 2022 12:53:15 +0100

Front end Vue element admin, creation and basic configuration of front-end projects

1, Vue element admin 1. Introduction Vue element admin is a background management system integration scheme based on element UI. Function: https://panjiachen.github.io/vue-element-admin-site/zh/guide/# function GitHub address: https://github.com/PanJiaChen/vue-element-admin Project online preview: https://panjiachen.gitee.io/vue-element ...

Posted by DragonHighLord on Fri, 11 Feb 2022 11:12:41 +0100

Realize a simple version of Vue router from zero, which is too easy to understand

1. Meaning: No matter what address the browser visits, the real page visited is always index HTML and vue render different components according to different addresses. Because the real page is unique, the page switching seen by the user is actually the switching of components. This kind of application is called single page application   2. ...

Posted by campsoup1988 on Fri, 11 Feb 2022 06:45:54 +0100

Vue3+Typescript(coderwhy) super detailed learning notes vue3 development basic syntax

(pay attention to whether I can accept the update push) I Knowledge supplement 1.1. (understand) this in methods 1.1.1. out of commission Arrow function If we want to use data to return the data in the object in methods, this must have a value, and the data in the data return object should be available through this. ...

Posted by samscripts on Fri, 11 Feb 2022 06:06:30 +0100

Vue notes (final)

catalogue 1, Introduction to Vue 2, Vue Basics (1) Simple knowledge (2) Local application (instruction) 3, axios and Vue 4, Case (1) Local application - computer case (2) Local application - picture switching case (3) Local application - Notepad case (4) Web application - weather query case #END (for details, you can watch the black ...

Posted by Rebel7284 on Fri, 11 Feb 2022 03:23:47 +0100

Simple realization and thinking of burying point tool based on babel

Relevant knowledge points What is AST abstract syntax tree Compilation process of program Use of AST Babel's principle Examples and thoughts of burying points based on babel in personal implementation What is AST abstract syntax tree Compilation process of program What i ...

Posted by gid on Thu, 10 Feb 2022 10:31:32 +0100