Using Vuecli (Vue scaffolding) to quickly create Vue projects

1, What is Vue cli vue cli is an official scaffold for building single page applications At present, Vuecli feels like a new project tool integrated in Idea, through which I can quickly create a project file with some basic functions. The description of scaffold is very similar. But this thing is used on the command line.   2, Install Vu ...

Posted by devang23 on Mon, 08 Jun 2020 22:02:13 -0700

Records of Front End Development: Foundation

Item Description This innovative training program provides multi-source movie browsing and recommendation system functions for movie audiences.The front-end is presented as a Web page, which provides functions of filtering, querying and sorting movies. Technical Selection 1. Do you want to use the ...

Posted by praeses on Sat, 06 Jun 2020 19:24:26 -0700

How to run a front-end angular project

1. Install first node.js Go to the official website to download and install: https://nodejs.org/en/ 2. Download pkg file and install it on mac 3. After the installation, verify whether it is successful at the terminal $ npm -v 6.14.4 $ node -v v12.16.3 4. Install angular console npm install -g @angular/cli This installs the comma ...

Posted by the max on Fri, 22 May 2020 07:47:19 -0700

SpringBoot + Vue + ElementUI Implement Background Management System Template--Front End: Introduce element-ui to define basic page display

Prerequisite: SpringBoot + Vue + ElementUI Implement Background Management System Template--Front End Chapter (1): Set up the basic environment:https://www.cnblogs.com/l-y-h/p/12930895.html   1. Define common component pages The effect of a simple page is as follows: (Do it roughly and understand the page roughly)       1. Install element-ui ...

Posted by Silverado_NL on Thu, 21 May 2020 18:58:47 -0700

UglifyJs problem in vue packaging

Today, I'm going to pack a vue project that I've been working on recently. I'll run it to the test environment and test it by the way, but it appears when I don't want to pack it ERROR in static/js/vendor.6ee331eab7d8c9bf1876.js from UglifyJs Unexpected token name «i», expected punc «;» [static/js/vendor.6ee331eab7d8 ...

Posted by pulkit123 on Mon, 18 May 2020 08:45:29 -0700

Git advanced usage, take it if you like!

If you think git is confusing, then this copy is for you! Please note that I intentionally skipped basic commands such as git commit and git pull/push. The theme of this short copy is some "advanced" uses of GIT. Navigation - jump to previous branch git checkout - View history # Each submission is shown on a single line git log --on ...

Posted by dwest on Sun, 17 May 2020 23:59:35 -0700

Using the TypeScript complier API

Using the TypeScript complier API Original Address Disclaimer Keep in mind that this is still an incomplete API - we set its release version to 0.5 and things will change over time.After all, there are some imperfections in the first iteration.I hope the community will give more feedback to improve the API.To allow users to convert betw ...

Posted by tzicha on Sun, 17 May 2020 17:47:43 -0700

Building mock data environment with vue+koa2

I wrote an article a while ago Implementation of mock data mode in front-end vue project In this paper, we mainly use mock data in vue project. The data and project are coupled together, which is not elegant. As a front-end with pursuit, how can we tolerate this method? In this article, we record the method of using koa2 to build the server and ...

Posted by cschotch on Sun, 17 May 2020 17:26:47 -0700

Mix react native and applet

background In this paper, we will open a brain hole to integrate and run the small program scheme on the basis of react native project. First look at the effect as follows: Environment construction npm install -g react-native-cli yarn Official Environment construction documents It has been explained in detail and will not be repeated here. You ...

Posted by morphboy23 on Thu, 14 May 2020 01:27:53 -0700

Node.js Part 12: random verification code of pictures

1. Why random verification code is needed Prevent malicious machine registration. The role of verification code: effectively prevent this problem from a specific registered user using a specific program brute force to try to login, in fact, verification code is the current way of many websites, using a relatively simple way to achieve this fun ...

Posted by Naez on Wed, 13 May 2020 10:49:20 -0700