VUE (Questionnaire Survey) Calls Controls (Components) Based on Different Topic Types
vue questionnaire design notes (question: call control according to different topic types)
ps: The overall length of the code is quite large, and only the relevant parts of the code are shown here.
First, we traverse the questions in this questionnaire and bind them in the form form.
To call different c ...
Posted by dirkbonenkamp on Sat, 05 Oct 2019 04:54:17 +0200
How to introduce BootStrap in Vue?
How does Vue introduce BootStrap?
Installation of Node.JS
Because Vue relies on Node.JS, install Node.JS first (at least version 8.9)
Installation of VueCli Tools
Command window input NPM install-g@vue/cli to install the latest version of VueCli tool
Vue-V Viewable Vue Version
NPM install-g@vue/cli-init retrievable old version
III. Creati ...
Posted by Gamerz on Fri, 04 Oct 2019 03:44:50 +0200
Front-end vue, jquery / background java to generate two-dimensional code
Recent projects need to develop the function of generating two-dimensional codes to facilitate the publicity and use of products, so I went to research, the following is the research results.
1. Using jquery to generate two-dimensional codes
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<ti ...
Posted by kripz on Tue, 01 Oct 2019 05:38:29 +0200
Vue Official Document Notes
1. How to create a Vue instance object?
var vm = new Vue({
el: "#app", //Label id Or label class name
data:{ //Bidirectionally bound data
message: "Wang Da hammer",
show: true,
arr: [
{ name: "Wang Da hammer", age: 18 }, { name:"Luo Xiao Hu", age: 19 }
...
Posted by kath421 on Mon, 30 Sep 2019 15:00:48 +0200
elementUI upload checks the width and height of the picture
Preface
In the process of using vue+elementUI, I encountered a problem: upload checks the width and height of the picture
At first, I went directly to Baidu google and found that there was no such problem. This should be a very common requirement. Why didn't element ation come true? Maybe it's very simple. There are no such problems on the in ...
Posted by pestilence669 on Tue, 24 Sep 2019 14:12:08 +0200
Talk about what I think mixin s are used in projects
Talk about what I think mixin s are used in projects
All three questions are what is a mixin?What does mixin do?How does mixin work?
What is mixin?
In a nutshell, mixins are mixtures. Using mixins reduces duplicate code and improves code reuse
What does mixin do?
For example, I'm writing an erp system, which has a lot of tables and has page bre ...
Posted by jini01 on Sun, 22 Sep 2019 05:02:53 +0200
vue basic learning
vue basic grammar learning
I. Relationships among mount points, templates, instances
<div id="root"> <!-- mount point -->
<span>
{{msg}}
</span>
</div>
<script>
new Vue({
el:"#root",
template:"<b>{{msg}}</b>", <!-- Template -->
data:{
msg:"hello world"
}
...
Posted by iamtheironman on Wed, 11 Sep 2019 07:51:33 +0200
Scaffolding Tool (commander)
With the continuous development of NodeJs, there are more things to do for the front end. A series of things such as Vue scaffolding, React scaffolding and so on stand out and enter people's vision. For these scaffolding tools, they just stay in the application stage, and never think about how scaffolding is realized. How the vue init webpack p ...
Posted by Innovative_Andy on Mon, 09 Sep 2019 10:23:25 +0200
Standardization of Front End Engineering
Preface
The main purpose of the front-end engineering is to improve the team's productivity. It can be understood that all the norms, guidelines, tools that can improve the team's development efficiency can be summarized into the front-end engineering. Recently, it took some time to sort out the basic norms of the front-end team. Here is a summ ...
Posted by x_maras on Mon, 09 Sep 2019 09:07:34 +0200
Use table expansion in element-ui to expand rows to control display hiding
Problem explanation:There are still some problems when using the table function in ElementUI of vue version. It can be said that the team is hungry. Documentation in this UI framework is very good, but there are still some methods that are confusing at first sight. Some tables'common function sample code is not very detailed. Write a blog about ...
Posted by eves on Fri, 06 Sep 2019 13:41:19 +0200