Nuxt development experience sharing, let you step on less pits!
Explain
This article is based on starter-template template for babies with vue-cli development experience.
vue init nuxt-community/starter-template
Nuxt
Official Documents
Simply put, Nuxt is an application framework based on Vue, using server-side rendering, so that your SPA application (Vue ...
Posted by ErcFrtz on Wed, 24 Jul 2019 03:23:49 -0700
More quickly to help you understand React - higher-order components
When it comes to react, the first thing we think of should be components. In react's eyes, everything is components. Even axios, which we use to get data, can be represented by components... for example, we can encapsulate them in this way.
<Request
instance={axios.create({})} /* custom instance of axios - optional */
method="" /* get, d ...
Posted by Plug-in on Sun, 21 Jul 2019 23:22:26 -0700
Make a simple chat room with Node (with websokcet tutorial)
I've been talking about theory before. Let's talk about dry goods this time.By the way, let's write that vue series from zero single row in a few days. Usher is Usher after all, and it is really difficult to simulate the whole vue for a while and a half.
Keep talking. (We need a node environment here, on a computer.)If you don't install node, c ...
Posted by justindublin on Sun, 21 Jul 2019 01:24:12 -0700
Nuxt.js Create Tourism Website Chapter 3 Writing of Login Page
Key knowledge points:
1. Using vuex/store to manage data
2. Logic of login and registration
3.Nuxt Local Storage
1. Login page
1.1 Login Page Layout
The code to replace pages/user/login.vue is as follows
<template>
<div class="container">
<!-- primary coverage -->
<el-row
type=" ...
Posted by tempa on Mon, 15 Jul 2019 15:48:20 -0700
Vue.js plug-in development in detail
Preface
With the increasing popularity of Vue.js, the related plug-ins of Vue.js have been continuously contributed, countless. For example, the official recommendation of vue-router, vuex, etc., are very good plug-ins. But more of us just stay in the stage of use, less self-development. So the next step is to understand the development and use ...
Posted by hatching on Sun, 14 Jul 2019 16:28:58 -0700
Vue.js Learning Notes 1
Demo and source code of this article have been put in GitHub, if you think this article is good, please point a compliment, or add a star to GitHub!
https://github.com/zwl-jasmine95/Vue_test
All of the following knowledge is based on vue.js version 2.0
I. Brief Introduction
Vue.js (pronunciation/vju/, similar to view) is a progressive f ...
Posted by harishkumar09 on Fri, 12 Jul 2019 16:16:20 -0700
vue dynamic data
In the previous article, we talked about data binding of vue, but the data generated by data is static data. If you need to modify it, you need to use this.xxx = xx to modify it explicitly in the code, but not automatically.
The data source of vue is not only data, but also several other kinds, which can be changed dynamically.
props
The dat ...
Posted by Boz on Thu, 11 Jul 2019 13:21:41 -0700
Use Vue.js and Chart.js to make colorful charts
Author: Jakub Juszczak Compile: Dahaha with a beard
Translated text: http://huziketang.com/blog/posts/detail?postId=58e5e0e1a58c240ae35bb8e0 English Connection: Creating stunning charts with Vue.js and Chart.js
For reprinting, please specify the source, keep the links to the original text and the author's information.
Learn more about char ...
Posted by taskagent on Tue, 09 Jul 2019 18:05:33 -0700
Three-terminal Router for iOS Hot Repair Architecture
MVP is a very good design mode, which can decouple code, layered business and componentized products, but can it be further improved? Coupling in the project is very few now, but the switch before the controller still exists. What way can zero-coupling of the controller be achieved? That's to say, this system needs to be sacrificed. The core Ro ...
Posted by NightCoder on Tue, 09 Jul 2019 11:53:56 -0700
Talking about iOS Hot Repair Architecture Downgradable
Router is really a very good design pattern, which can achieve ultra-low coupling. As the last section of the series, we will coordinate the three ends to achieve a hot repair architecture. Next, the definition of this architecture is that when the business logic of the Native page appears Bug, it can not be packed online immediately to pass th ...
Posted by macmonkey on Tue, 09 Jul 2019 11:35:11 -0700