[Vue Principle] Generation Node Data Mosaic of Compile-Source Edition
It's not easy to write articles. Give a compliment to your brother. Focus on Vue source code sharing, the article is divided into vernacular version and source version, vernacular version helps to understand the working principle, source version helps to understand the internal details, let's learn together.Research based on Vue version [2.5.1 ...
Posted by searain on Mon, 12 Aug 2019 23:10:59 -0700
[Vue+DRF fresh electric business] 29. online services Alipay interface and Vue tune, Django agent Vue operation
Topics: Vue+Django REST framework Front-end and Back-end Separation of Fresh E-commerce
Vue+Django REST framework to create front-end and back-end separation of fresh e-commerce projects (Muchow video).
Github address: https://github.com/xyliurui/DjangoOnlineFreshSupermarket ;
Django version: 2.2, dja ...
Posted by ilikemath2002 on Sat, 10 Aug 2019 06:35:09 -0700
Large screen monitor
Use of Echarts
1. Introduce echarts files, and you can download them directly in vue (npm I echarts--s)
2. Initialization of echarts
//In main.js
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
// Initialize echarts instance based on prepared dom
var myChart = echarts.init(document.get ...
Posted by vtbruinsfan on Fri, 09 Aug 2019 00:39:51 -0700
Basic introduction to vuex
Introduction to Vuex
Introduction to installation and composition of vuex
image.png
Introduction to vuex
vuex is a state management mode for vue.js applications
It uses centralized storage to manage the state of all components of an application.
And with the corresponding rules to ensure that changes occur in a predictable ma ...
Posted by santhosh_89 on Thu, 08 Aug 2019 07:14:16 -0700
4. VueJs Pit Filling Diary Build Axios Interface Request Tool
In the previous chapter, we learned about the catalog structure of the project, and made some adjustments to the catalog structure of the project so that we can run the project again.Today we'll build the api interface invocation tool Axios.Vue itself does not support ajax calls, and if you need the ...
Posted by doucie on Tue, 06 Aug 2019 11:25:44 -0700
Virtual Dom Details-
With the advent of Vue and React and the growth of many frameworks, virtual DOM has gradually become a topic we often discuss and discuss.What is virtual DOM, how virtual DOM is rendered, what is the difference between virtual Dom of Vue and virtual DOM of React, etc.... A series of topics are under discussion.For this reason, I also made some ...
Posted by lkq on Tue, 06 Aug 2019 11:07:28 -0700
Implementing a simple Vue
This week, I wrote a simple vue by referring to some blog posts. There are many implementations of this kind on the internet. My realization is nothing new. I should be a self-practice.
This article is also sent to me. github On the blog, welcome star
Specific realization
First of all, we have to have a Vue class. Of course, I wrote a very roug ...
Posted by stephenf33 on Sun, 04 Aug 2019 08:10:46 -0700
Vue Basic Syntax (Style Binding, Event Processing, Forms, Vue Components)
Style binding
event processing
form
Vue Component
Style binding
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script>
<title>vue Style binding</title>
<style&g ...
Posted by robertsamanek on Fri, 02 Aug 2019 20:51:06 -0700
Remember to encapsulate elementUI lists once
I just learned vue, looked at the components of elementUI, and wrote and played by myself.
The basic needs are as follows
Check all boxes, Pagination
Like iview, the table header is customized by passing in an array of options, and the table content is controlled by passing in an array of data.
It's ...
Posted by Awesome Trinity on Thu, 01 Aug 2019 19:14:35 -0700
Vue Template Syntax
Vue Template Syntax
interpolation
instructions
Filter
Computing and listening attributes
interpolation
v-html instruction for output HTML code
Values in HTML attributes should use the v-bind directive
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script sr ...
Posted by commandonz on Thu, 01 Aug 2019 02:05:49 -0700