Home  >  Article  >  Web Front-end  >  Summary of VUE key issues

Summary of VUE key issues

亚连
亚连Original
2018-05-29 15:14:202184browse

This article summarizes the important and difficult points of VUE, and shares the code in detail. Friends who are interested can learn from it.

1. Three mounting methods for components

Automatic mounting

var app3 = new Vue({
 el: '#app-3',
 data: {
 seen: true
 }
})

Manual mounting

// 可以实现延迟按需挂载

{{name}}