vue.config.js configuration

vue.config.js configuration item After the vue-cli3 scaffold is erected, there is no Vue in the project directory config. JS file, which needs to be created manually Create Vue config. js vue. config. JS (equivalent to the previous webpack.config.js) is an optional configuration file. If this file exists in the root directory of the projec ...

Added by carsale on Wed, 02 Mar 2022 06:39:58 +0200

Interpretation of Vue source code -- Analysis of compiler

When learning becomes a habit, knowledge becomes common sense. Thank you for your attention, likes, collections and comments.The new video and articles will be sent to WeChat official account for the first time. Li YongningThe article has been included in github warehouse liyongning/blog , welcome to Watch and Star.Special instructionsDue to th ...

Added by friday_13 on Wed, 02 Mar 2022 03:11:44 +0200

Tiktok is convenient, small air conditioning special effect html+css+js

Look at the effect first (the source code is at the end): The video effect is as follows, with sound effect Station B: A fan shared this effect with me. I thought it was very interesting, and then studied it. The specific implementation is as follows (there may be many codes, but they are relatively simple. Come on): Implementation process ...

Added by theoph on Tue, 01 Mar 2022 21:36:05 +0200

VuePress blog optimization opens Algolia full text search

prefacestay "A blog with VuePress + Github Pages" In, we used VuePress to build a blog. The final effect is as follows: TypeScript Chinese document. Because VuePress's built-in search will only build the search index for the title, h2, h3 and tags of the page. If you need full-text search, you can use Algolia search. This article talk ...

Added by roice on Tue, 01 Mar 2022 15:25:33 +0200

Introduction to Vue syntax (recommended for getting started)

1.Mustache (double brace): 2.v-once: this instruction does not need to be followed by any expression (v-for followed by expression). This instruction indicates that elements and components are rendered only once and will not change with the change of data. After parsing the tag, the html-v.html-3 will output the data. 4.v-text: < H2 v-t ...

Added by josephicon on Tue, 01 Mar 2022 08:59:46 +0200

Vue3 system introduction and project practice

Vue3 system introduction and project practice Comprehensive knowledge points + high matching projects, easy entry and in-depth Mastery Chapter 1 a preliminary study of Vue grammar A very classic method is used here: split()Method splits each character of a string object and treats each string as each element of the array reverse()Metho ...

Added by simulant on Tue, 01 Mar 2022 04:01:50 +0200

Interpretation of Vue source code -- Hook Event

When learning becomes a habit, knowledge becomes common sense. Thank you for your attention, likes, collections and comments.The new video and articles will be sent to WeChat official account for the first time. Li YongningThe article has been included in github warehouse liyongning/blog , welcome to Watch and Star.prefaceHook Event (Hook Event ...

Added by Arenlor on Tue, 01 Mar 2022 02:23:42 +0200

Promise usage review

Promise usage review First, let's review what Promise is. Promise is a solution for asynchronous programming, which is more reasonable and powerful than traditional solutions, callback functions and events. Promise is simply a container that holds the results of an event (usually an asynchronous operation) that will not end in the future. Sy ...

Added by michalurban on Mon, 28 Feb 2022 09:12:26 +0200

Create portal vue project based on Bootstrap template 03

Portal VUE project (III) Page component optimization Breadcrumb navigation breadcrumbs displays the path information (Home / blog) of the current page in the effect of bread crumbs. Would it be better for the user experience if navigation click events or custom information could be added to the path. Modify / SRC / components / layout / ...

Added by tomhath on Mon, 28 Feb 2022 07:34:22 +0200

MVVM mode in Vue

preface    in the context of rapid iteration of Internet products, front-end developers should not only write pages, but also complete page dynamic effects through ajax+js. There is great pressure. In order to solve this problem, MVVM development mode was born. MVVM is short for model view view model -M: Model refers to data -V: Vie ...

Added by gyash on Sun, 27 Feb 2022 15:15:21 +0200