Build Vuepress blog/document system: Build, PDF export, SEO, auto compile, auto deploy, domain name, HTTPS, archive, etc.
This is a personal (pdai) original article, please indicate the source for reprinting and refer to the effect of blog building: [Java Full Stack Knowledge System] ( https://www.pdai.tech)
Article Content Directory
Article Content Directory
Part I - Building Blog/Document System
Blog/Document Preface
What are the options
What attempts have ...
Posted by DannyM on Mon, 11 Nov 2019 19:49:02 -0800
Vue + eckarts line chart
In jQuery, implement a line chart, and [front end statistics chart] echarts implement a single line charthttps://www.jianshu.com/p/0354a4f8c563.
Now to achieve this, Vue + eckarts implements a line chart and opens the previous mint project:
1: install echarts in the project
cnpm install echarts --s
2: introduce where charts a ...
Posted by happyneil on Mon, 11 Nov 2019 14:56:38 -0800
Wi Fi module Demo (novice tutorial) graphic explanation module tutorial
The first step is to create a Native App application in the development console and prepare for adding modules:
Follow the steps below
After entering points and creating points
It is better to click the Add button to return to see if you have added the required module. After adding the module, click the custom
Then the cloud operation is co ...
Posted by davestevens_uk on Mon, 11 Nov 2019 13:30:30 -0800
A piece of magic code to monitor DOM
By Eddie AichCrazy technology house
Original text: https://dev.to/eddieaich/spy-...
No reprint without permission
With this module, you can quickly view the properties of DOM elements by hovering over the browser. Basically it's an instant checker.
Hovering over a DOM element displays its properties!
Try it on your own
Copy the entire block o ...
Posted by ask9 on Mon, 11 Nov 2019 01:18:00 -0800
$on and $emit realize parent-child cross component communication
As we all know, $on is for event monitoring, and $emit is for event distribution. But you may be unfamiliar with $dispatch and $broadcast. This api is version 1. X of vue1.x, which has been abandoned in vue2.x
$on and $emit
$on can also monitor events triggered by itself
$dispatch and $broadcast
$dispatch: used to dispatch events to t ...
Posted by xcali on Sun, 10 Nov 2019 09:22:05 -0800
Vue development summary and some best practices (Updated)
Basic development environment
Project created by vue-cli3, vscode as a coding toolvscode plug-in recommendations: vscode plug in configuration
Article directory
Introduction to project directory structure
UI framework selection
main,js processing
Axis request secondary encapsulation
1. Project directory structure
├── public // index.html
├── ...
Posted by anser316 on Sun, 10 Nov 2019 08:40:09 -0800
[old driver takes you to fly] basic introduction to vue.js
Life cycle hook function
From the time when the vue instance is created to the time when the instance is destroyed, vue provides us with multiple hook functions in this complete declaration cycle.
vue1.0+
vue2.0
describe
init
beforeCrete
The component instance is created before the component computes the property
creat ...
Posted by baiju on Sun, 10 Nov 2019 08:20:50 -0800
Solution to the problem that X-editable cannot be reinitialized
Recently, the x-editable plug-in is used, and a headache is found. X-editable cannot initialize the same < a > element twice.
For example, when the page is loaded, use array 1 to fill a drop-down box; then click the button, and use array 2 to fill the drop-down box again; click the drop-down box at this time, and the data of array 1 is f ...
Posted by phelpsa on Sat, 09 Nov 2019 12:12:57 -0800
vue realizes on-demand loading of components and pages through web pack
Article directory
introduce
Implementation of vue require method
Using wabpack ensure to realize
introduce
In large-scale vue projects, many routing page references of. vue files are involved. However, if import is used, all components in the route will be packed in a js when the project is packaged, resulting ...
Posted by capslock118 on Sat, 09 Nov 2019 10:28:22 -0800
vue parent child component and ref
Pass value from parent component to child component
<div id="app">
<! -- when a parent component references a child component, the data that needs to be passed to the child component can be passed to the internal of the child component in the form of attribute binding through the form of attribute binding (v-bind:), which is used ...
Posted by hannnndy on Sat, 09 Nov 2019 07:52:36 -0800