在创建Vue实例时经常看见render: h => h(App)的语句,现做出如下解析:
h即为createElement,将h作为createElement的别名是Vue生态系统的通用管理,也是JSX所要求的
h => h(App)是es6语法,即为: function(h){return h(App)}
在创建Vue实例时经常看见render: h => h(App)的语句,现做出如下解析:
h即为createElement,将h作为createElement的别名是Vue生态系统的通用管理,也是JSX所要求的
h => h(App)是es6语法,即为: function(h){return h(App)}