本篇文章主要介紹了vue元件jsx語法的具體使用,內容挺不錯的,現在分享給大家,也給大家做個參考。
如果使用render函數來寫比較複雜的vue元件,對於可讀性和可維護性都很不友好,而使用jsx就會讓我們回到更接近模板的語法。 babel轉譯器會將jsx轉譯為render函數渲染。
配置
需要用到babel插件
安裝
npm install\ babel-plugin-syntax-jsx\ babel-plugin-transform-vue-jsx\ babel-helper-vue-jsx-merge-props\ babel-preset-env\ --save-dev
.babelrc配置
在plugins中加入transform-vue-jsx
{ "presets": ["env"], "plugins": ["transform-vue-jsx"] }
#基礎範例
轉義前
#<p id="foo">{this.text}</p>
轉譯後
h('p', { attrs: { id: 'foo' } }, [this.text])
Note:h
函數為vue實例的$createElement
方法,必須存在於jsx的作用域中,在渲染函數中必須以第一個參數傳入,如:
render (h) { // <-- h 函数必须在作用域内 return <p id="foo">bar</p> }
#自動注入h函數
# #從3.4.0開始,在用ES2015語法宣告的方法和getter訪問器中(使用
function關鍵字或箭頭函數除外),babel會自動注入
#h (
const h = this.$createElement)函數,所以可以省略(h)參數。
Vue.component('jsx-example', { render () { // h 会自动注入 return <p id="foo">bar</p> }, myMethod: function () { // h 不会注入 return <p id="foo">bar</p> }, someOtherMethod: () => { // h 不会注入 return <p id="foo">bar</p> } }) @Component class App extends Vue { get computed () { // h 会自动注入 return <p id="foo">bar</p> } }
Vue JSX 和React JSX對比
首先, Vue2.0 的vnode格式與react不同,createElement函數的第二個參數是資料對象,接受一個嵌套的對象,每個嵌套物件都會有對應的模組處理。
render (h) { return h('p', { // 组件props props: { msg: 'hi' }, // 原生HTML属性 attrs: { id: 'foo' }, // DOM props domProps: { innerHTML: 'bar' }, // 事件是嵌套在`on`下面的,所以将不支持修饰符,如:`v-on:keyup.enter`,只能在代码中手动判断keyCode on: { click: this.clickHandler }, // For components only. Allows you to listen to // native events, rather than events emitted from // the component using vm.$emit. nativeOn: { click: this.nativeClickHandler }, // class is a special module, same API as `v-bind:class` class: { foo: true, bar: false }, // style is also same as `v-bind:style` style: { color: 'red', fontSize: '14px' }, // other special top-level properties key: 'key', ref: 'ref', // assign the `ref` is used on elements/components with v-for refInFor: true, slot: 'slot' }) }
render (h) { return ( <p // normal attributes or component props. id="foo" // DOM properties are prefixed with `domProps` domPropsInnerHTML="bar" // event listeners are prefixed with `on` or `nativeOn` onClick={this.clickHandler} nativeOnClick={this.nativeClickHandler} // other special top-level properties class={{ foo: true, bar: false }} style={{ color: 'red', fontSize: '14px' }} key="key" ref="ref" // assign the `ref` is used on elements/components with v-for refInFor slot="slot"> </p> ) }
JSX展開運算子
支援JSX展開,外掛程式會智慧的合併資料屬性,如:const data = { class: ['b', 'c'] } const vnode = <p class="a" {...data}/>
{ class: ['a', 'b', 'c'] }
##Vue 指令 JSX對大多數的Vue內建指令都不支持,唯一的例外是
v-show,該指令可以使用v-show={value}
的語法。大多數指令都可以用程式方式實現,例如v-if
就是一個三元表達式,v-for
就是一個array.map()
等。
如果是自訂指令,可以使用
語法,但是改語法不支援指令的參數arguments
和修飾器modifier
。有以下兩個解法:將所有內容以物件傳入,如:
使用原生的vnode指令資料格式,如:
const directives = [ { name: 'my-dir', value: 123, modifiers: { abc: true } } ] return <p {...{ directives }}/>
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
基於Vue的延遲載入外掛程式vue-view-lazy的介紹vue元件name的介紹jquery實作圖片水平捲動的效果############################
以上是關於vue元件jsx語法的使用介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!