Hand in Hand to Learn VUE: Common Attributes of Three-Stage VUE during Construction Period

Video tutorial Please move because you don't support video link. https://www.henrongyi.top What can you learn? Hand in hand with you to learn VUE entry three files, VUE constructor internal use of various attributes, methods, computed, watch, filters, these four attributes, will often be used in the work. There are many mixed attributes, such ...

Posted by Thatsmej on Sat, 04 May 2019 12:30:38 -0700

hapi framework building records: Joi data checks and Sequelize (data migration, data filling)

hapi framework, using Official Web In short, Hapi is a rich framework for building applications and services that enables developers to focus on writing reusable application logic rather than spending time building infrastructure. In my own words, it is a node service infrastructure like express, koa. This blog was read in the gold digging Br ...

Posted by YAOMK on Fri, 03 May 2019 00:00:38 -0700

Deploy novel api service to Tencent cloud

The novel API version 1.0 is finished, and then it is deployed to the server, using nginx, pm2, nvm, git, OpenSSL. Server configuration: CentOS 7.4 64 bit 1 core 2 GB 1 Mbpsnode version: 8.9.0nvm version: 0.33.11npm version: 5.5.1nginx version: 1.12.2git version: 2.9.5 The first step is to add the pm2 configuration file Create a pm2.json file i ...

Posted by Jove on Sun, 28 Apr 2019 00:40:36 -0700

Vue uses vue-quill-editor rich text summary (picture upload)

Vue-quill-editor is a rich text editor that we often use when we re-use the Vue framework. When we edit rich text, we often insert some pictures. The default way of vue-quill-editor is to convert pictures directly to base64 encoding. As a result, html fragments of rich text are very redundant. Usually, each server receives them. Th ...

Posted by ihenman on Tue, 23 Apr 2019 10:57:35 -0700

Advanced Play of Cloud Functions in Small Programs-Routing

In general, a cloud function completes a single logical function, which is the same method as a class, as shown in the figure: However, limited free users can only use 20 cloud functions at most. To realize multiple complex functions in a single cloud function, it is necessary to distinguish them by parameters, which is not easy to read and m ...

Posted by cli_man on Sat, 20 Apr 2019 10:24:33 -0700

Weex (1) - Environment Creation and the First Program

brief introduction Weex is a front-end technology similar to React native (RN), which can support platform web, Android, IOS. This compatibility platform may be the trend in the future, as can be seen from the recruitment posts, more and more demand. So let's study it. I've done Android before, and I've taken Android as an example. Recommen ...

Posted by Zetusko on Wed, 17 Apr 2019 21:12:33 -0700

Creation of app Edition Front-end for Integrated Knowledge of Internet of Things

For Internet of Things applications, it is particularly necessary to build an HTML5 mobile app. In order to develop HTML 5 app, besides using React Native, stable ionic + Angular JS is currently preferred to develop iOS and Android. The function of the front-end of the app version we want to develop is the same as that of the front-end of the w ...

Posted by tomsace on Mon, 15 Apr 2019 15:24:32 -0700

ECharts 3.0 Source Brief Analysis 1-Overall Architecture

Baidu Echarts 3.0 As an important open source library for front-end domain visualization, it is often used in our daily work and life, so it is necessary to understand the source code of Echarts together. I'm going to introduce the use and source code of Echarts 3.x in a series. Some demo s and other source codes that are not introduced in the ...

Posted by Iki on Sun, 14 Apr 2019 20:48:33 -0700

Newcomers learn, according to the documentation of web pack, bug repair is basically perfect. (If you have problems, please contact me, not completely original, do not like spraying..)

Introduction:webpack is simply a configuration file in which all the magic happens. This configuration file is divided into three main blocks Which file is the entry file for webpack to use as the entry for the projectoutput exits let webpack place the processed filesWhat different modules do module modules use to process various types of files ...

Posted by mikemessiah on Sun, 14 Apr 2019 18:39:32 -0700

npm script command learning notes

What is npm script? In the package.json file, script commands defined using scripts fields { // ... "scripts": { "build": "node build.js" } } How to execute npm scripts? $ npm run build # Equivalent to implementation $ node build.js Do you know any npm scripts? #View all npm script commands for the current project #(Actually, you can ...

Posted by GameMusic on Sun, 14 Apr 2019 12:45:32 -0700