vue Source 01 Explains the diff algorithm of vue in detail

Links to the original text: https://juejin.im/post/5affd01551882542c83301da This article is based on SimpRead Transcoding, original address https://juejin.im/post/5affd01551882542c83301da Preface The goal is to write a very detailed dry ...

Posted by CaseyLiam on Fri, 09 Aug 2019 12:30:38 +0200

Parse Property Resolution of Compile-Source Edition

It's not easy to write articles. Give a compliment to your brother. Focus on Vue source code sharing, the article is divided into vernacular version and source version, vernacular version helps to understand the working principle, source version helps to understand the internal details, let's learn together.Research based on Vue version [2.5.1 ...

Posted by Cynix on Fri, 09 Aug 2019 08:02:31 +0200

Ten minutes to understand eslint configuration & write custom eslint rules

Introduction to eslint ESLint is an open source JavaScript code checking tool created by Nicholas C. Zakas in June 2013. Code checking is a static analysis, often used to find problematic patterns or code, and does not depend on the specific coding style. For most programming languages, there will be code checking. Generally speaking, compilers ...

Posted by danf_1979 on Tue, 06 Aug 2019 13:09:25 +0200

Use Baidu Map in vue project

When using Vue for project, Baidu Map is useful, using vue-baidu-map plug-in, including picking up location coordinates, searching for locations, etc. 1. Ways of introduction Can be introduced globally in app.js import BaiduMap from 'vue-baidu-map' Vue.use(BaiduMap, { /* You need to register ...

Posted by danmon on Tue, 06 Aug 2019 04:02:59 +0200

Set 9: Implementing a set of ui component libraries for pc-side vue from scratch (Pager Components)

Episode 9: Implementation from scratch (Pager Component) This episode locates: Pager is also an old friend. Remember when I first learned js, writing a pager required 300 lines of code. If I could get back through it, I would have to teach myself design patterns. As the status of mobile phones has been improved, most people spend more time onl ...

Posted by baby_g on Mon, 05 Aug 2019 18:10:25 +0200

Micro Front End Project 2 (VUE)

Preface         Micro Front-end: Theory Paper        Micro Front End - portal Project        Micro Front End - menu & Project 1 (React)The previous article explained the application of react project in single-spa micro-front-end architecture. This article is the last one, the application of vue project in this architecture. Project2 project ...

Posted by widget on Fri, 02 Aug 2019 12:07:42 +0200

Teach you how to use vue to develop webpage wechat sharing function

First of all, you will have vue. Second, you will have Wechat Public Number 1. Appid 2. The key is equivalent to your Wechat Authentication ID Card. No nonsense!! The following direct approach Look at this first without a public number Public Number Opens Course Look at your id in the basic configura ...

Posted by kincet7 on Fri, 02 Aug 2019 07:46:57 +0200

Value passed between parent and child components in a vue project.

First of all, the parent-child component is to introduce another vue file in one vue file, the vue file introduced is the child component, and the vue file introduced is the parent component.Variable values in child components cannot be invoked directly in parent components.Here's how values are passed between parent and child components. Firs ...

Posted by alexweber15 on Wed, 31 Jul 2019 21:10:55 +0200

Cendertron, Sliding Authentication Code Bypass Strategy for Dynamic Crawlers

Cendertron, Sliding Authentication Code Bypass Strategy for Dynamic Crawlers stay Cendertron In the Safe Dynamic Crawler series, we introduce the design of the safe crawler and the cluster building of the crawler in turn. In this article, we discuss the bypass strategies for sliding authentication codes. The strategies and codes used in this a ...

Posted by kjharve on Wed, 31 Jul 2019 19:15:39 +0200

Registration of components

Registration of components By instantiating the Vue constructor function, you get a Vue instance, which we call the'root instance', which is the largest parent This root instance exists as a label, so we also call it a'root component' The root instance is also a component, but what we get is jus ...

Posted by nomad9 on Tue, 30 Jul 2019 20:20:10 +0200