你須要知道的vue2 jsx render函數

一般開發vue咱們使用的是模板語法,其實還有和react相同的語法,那就是render函數,一樣支持jsx語法。vue

Vue 的模板實際是編譯成了 render 函數。react

 

0 傳統的createElement方法git


createElement(
'anchored-heading', { props: { level: 1 } }, [ createElement('span', 'Hello'), ' world!' ] )


渲染成下面這樣
<anchored-heading :level="1">
  <span>Hello</span> world!
</anchored-heading>
 

 

 

 

1 使用jsx語法github

 

安裝下面的東東npm

這就是會有一個 Babel plugin 插件,用於在 Vue 中使用 JSX 語法的緣由,它可讓咱們回到於更接近模板的語法上。babel

https://github.com/vuejs/babel-plugin-transform-vue-jsx函數

 

npm install\
  babel-plugin-syntax-jsx\
  babel-plugin-transform-vue-jsx\
  babel-helper-vue-jsx-merge-props\
  babel-preset-es2015\
  --save-dev


而後編輯.babelrc文件spa

{
"presets": ["es2015"],
"plugins": ["transform-vue-jsx"]
}插件

 

必需要像這樣寫code

Vue.component('jsx-example', {
  render (h) { // <-- h must be in scope
    return <div id="foo">bar</div>
  }
})
相關文章
相關標籤/搜索