iView Learning Notes: Table Line Editing
1. Front-end preparation
First create a new project, then introduce the iView plug-in, configure router npm to install iView
npm install iview --save
cnpm install iview --save
src/main.js file content
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import iView from 'iview';
import 'iview/dist/styles/iview.css';
...
Added by HokieTracks on Sat, 27 Jul 2019 13:43:13 +0300
Use of Routing Component 0
I. Overview
Router: Router manages routing;
Routing: Routing is a mapping relationship. A key corresponds to a value, and a key is a path. For background routing,
Value is a callback function for processing requests, and is a component for the front-end routing value.
Explain:1) Officially provided vue plug-ins for SPA (single page)2) gi ...
Added by oeb on Sat, 27 Jul 2019 07:44:03 +0300
vue advanced: vuex (data pool)
Non-parent-child component passed values
vuex
1. Value transfer by non-parent and child components
Sample Key Code for Implementing Value Transfer for Non-Parent-Child Components Based on Parent-Child Component Communication and Value Transfer:
1 <template>
2 <div>
3 <!-- Student Show -->
4 ...
Added by Batosi on Fri, 26 Jul 2019 23:39:36 +0300
(16) Our form solution el-form-renderer
Preface
This article will introduce our form solution. @femessage/el-form-renderer Show us how we deal with the following issues under the Vue technology stack:
Dynamic display or hiding of form items
Form Data Linkage
Format Input/Output Data Formatting
Processing of Unconventional Form Items
Complex form validation
programme
Dynamic Display ...
Added by kigroy on Fri, 26 Jul 2019 12:11:38 +0300
webapp calls up browser sharing
webapp calls up browser sharing
cause
Recently, I have made a news information page, which has the function of sharing. After referring to a lot of information, I have the following summary.
Compatibility
Almost all browsers on the mobile side support sharing QQ and QQ space
QQ browser
UC Brows ...
Added by nadeauz on Fri, 26 Jul 2019 09:16:34 +0300
Vue Common Syntax
1. Template Grammar
1. Double brace expression
[Grammar:]
{{exp}}
//Used to enter data to a page, that is, to display data on a page.
[Examples:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initia ...
Added by saad|_d3vil on Fri, 19 Jul 2019 19:40:16 +0300
Vuex Popular Tutorial
This article is basically rom Violation of Vuex, using easy-to-understand text, also deletes the original content.
If you don't mind the above statement, you can continue to read this article and hope it will help you.
To learn a new technology, you must be clear about the two W's,'What&Why'.
"What is XX?"Why use ...
Added by aswini_1978 on Wed, 17 Jul 2019 21:22:09 +0300
Quick Construction of NW.js Project with Vue 2 and webpack (2)
Packing NW.js Application and Making windows Installation File
To update:Some of the technical points in this article have fallen behind. Latest Articles
This is probably the most detailed package of NW.js in Chinese history.
This article adapts to have a certain js foundation, the first time to play under Windows setup packaging classmates, ...
Added by twinzen on Tue, 16 Jul 2019 02:47:15 +0300
vue2 Plug-in Development Pilot
The official documentation for developing vue plug-ins is described as follows:
Plug-ins usually add global functionality to Vue. There is no limit to the scope of plug-ins. Generally, there are the following kinds of plug-ins: 1. Add global methods or attributes, such as: vue-element. 2. Add global resources: instructions / filters / transiti ...
Added by muretto on Mon, 15 Jul 2019 03:02:04 +0300
vue2.0-Component-Document Understanding Notes v1.0
assembly
Components can extend HTML elements to encapsulate reusable code
At a higher level, components are custom elements for which the Vue.js compiler adds special functionality
In some cases, components can also be in the form of native HTML elements, extending with is features.
Using components
Register ...
Added by anthonyv on Mon, 15 Jul 2019 03:00:38 +0300