VUE重点问题总结

1、组件三种挂载方式

自动挂载

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

手动挂载

// 可以实现延迟按需挂载
{{name}}

你可能感兴趣的:(VUE重点问题总结)