uniapp nvue ceiling and waterfall flow and supplementary tutorials to supplement the lack of official documents- App nvue specific components

The front is the official document, and the following has its own supplement. After all, the official document is insufficient! While learning from each other, it can also prevent you from reviewing when you meet these needs in the future waterfall app side nvue special components. The < waterfall > component is the core component ...

Added by SpanKie on Sun, 02 Jan 2022 22:37:15 +0200

VUE learning_ From getting started to giving up

1, Function and function of vue The working mode is as follows 1. Do not operate DOM 2. Abbreviation of single page application web project: SPA 3. At present, various new frameworks adopt syntax similar to Vue or React as the subject method. Wechat Applet / MpVue 4. Mastering the development syntax of Vue is equivalent to mastering the new d ...

Added by psionicwrath on Sun, 02 Jan 2022 19:31:59 +0200

VUE3 tutorial: how do straight men of science and technology build plug-ins with their sisters step by step?

Author: shade Translator: front end Xiaozhi Source: learnvue There are dreams and dry goods. Wechat search [Daqian world] pays attention to this bowl washing wisdom who is still washing dishes in the early morning. This article GitHub https://github.com/qq449245884/xiaozhi It has been included. There are complete test sites, materials a ...

Added by payjo on Sun, 02 Jan 2022 18:32:48 +0200

vue create preliminary analysis and customized modification

Version Description $ vue --version @vue/cli 4.5.9 $ node --version v14.0.0 $ npm --version 7.6.1 Source location - mac /usr/local/lib/node_modules/@vue/cli Process description According to package Bin in JSON can know that the entry file is in bin / Vue js vue. The command setting of create <app-name> is found in JS, and lib/create is ...

Added by duk on Sun, 02 Jan 2022 11:39:46 +0200

Detailed steps of webpack building vue project

summary First step Execute the npm init command to initialize the package JSON file   { "name": "demo1", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" } Name indicates th ...

Added by evildj on Sun, 02 Jan 2022 09:44:22 +0200

Basic attribute knowledge of Vue

1. Vue Foundation_ Update detection, key function We mentioned the v-for array in the previous chapter, so our requirement is how the v-for array changes and needs to be updated to the page synchronously. However, not all array methods will cause v-for update. <template> <div> <ul> <li v-for="(val, index) in a ...

Added by Madzz on Sun, 02 Jan 2022 04:50:21 +0200

So light, so heavy: image download and compressed package download

0. Origin Download. Different text streams have different download methods. 1. Picture download I directly, uh, use the previous method of downloading pictures, change the acquisition and download name of the text stream, and dare to use it directly. As a result, er, the direct file is damaged and cannot be opened. //Export picture ex ...

Added by nezona on Sat, 01 Jan 2022 17:42:18 +0200

Implement simple Vuex

Implement simple Vuex Implement simple Vuex introduce The purpose of this paper is to realize a simple version of Vuex for learning, and it is also a summary and review of learning from online classes. The content is easy to implement. There are many shortcomings. Please communicate more. Content splitting Implement Store class Save c ...

Added by bamfon on Sat, 01 Jan 2022 04:35:46 +0200

The difference between watch and computed in vue

The difference between watch and computed in vue 1, Watch (listener: used to listen for changes in attributes in data or prop) 1. Listen for simple data types It will not be executed during initial binding. The listening calculation will not be executed until the firstName is changed <div> <div> <p>FullName: {{full ...

Added by ferronrsmith on Fri, 31 Dec 2021 07:43:25 +0200

Electron Vue Development Notes - select Folder

Recently, in the development process, I met a strange and familiar demand: selecting folders. It seems simple, but in fact there are pits. This paper records my pit mining process. Requirement description The user selects a folder (note that it is not a file, but a folder), and then gets the local global path of the folder from the front end ...

Added by Harley1979 on Thu, 30 Dec 2021 15:00:26 +0200