vue官方API文档中,对el有如下描述:
https://cn.vuejs.org/v2/api/#el
也就是Vue实例挂载的元素节点,值可以是 CSS 选择符,或实际 HTML 元素,或返回 HTML 元素的函数。
el 的作用大家都知道,用于指明 Vue 实例的挂载目标。我们重点关注上面两个红色叹号部分,总结一下就是:如果存在 render 函数或 template 属性,则挂载元素会被 Vue 生成的 DOM 替换;否则,挂载元素所在的 HTML 会被提取出来用作模版
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <div id="ppp"></div> </body> </html>
示例1: render 函数渲染的 DOM 替换 <div id="ppp"></div>
new Vue({ el: '#ppp', router, store, render: h => h(App) })
示例2:字符串模版替换 <div id="ppp"></div>
new Vue({ el: '#ppp', router, components: { App }, template: '<App/>' })
示例3:手动挂载且不存在render函数和template属性
new Vue({ router, store, }).$mount('#ppp')
更多web开发知识,请查阅 HTML中文网 !!
以上就是vue.js中el是什么意思?的详细内容,更多请关注易知道|edz.cc其它相关文章!