码迷,mamicode.com
首页 > Web开发 > 详细

vue 渲染函数&jsx

时间:2018-05-27 17:38:29      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:==   写法   简化   return   element   func   read   vue   操作   

前端更新状态,更新视图,所以性能问题主要由Dom操作引起的,而js解析编译dom渲染就要快得多,  所把要js和html混写。

vue 的动态js操作 html  方法:reader函数:

vue  虚拟dom原理  +jsx

=========================

<h1>{{bigTitle }}</h1>

渲染函数:

reader:function(createElement){

  return createElement(‘h1‘,this.bigTitle);

}

================

缩写1:reader (h){

  reader h(App)

}

===================

缩写2:reader: h => h(App)

 

jsx:javascript  eXtension(延伸),简化reader 原始写法,方便维护,和可读性

 

vue 渲染函数&jsx

标签:==   写法   简化   return   element   func   read   vue   操作   

原文地址:https://www.cnblogs.com/yancongyang/p/9096646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!