如果使用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"]}
基础示例
转义前
<div id="foo">{this.text}</div>
转译后
h('div', { attrs: { id: 'foo' }}, [this.text])
Note:h
函数为vue实例的$createElement
方法,必须存在于jsx的作用域中,在渲染函数中必须以第一个参数传入,如:
render (h) { // <-- h 函数必须在作用域内 return <div id="foo">bar</div>}
自动注入h函数
从3.4.0开始,在用ES2015语法声明的方法和getter
访问器中(使用function
关键字或箭头函数除外),babel会自动注入h
(const h = this.$createElement
)函数,所以可以省略(h)参数。
Vue.component('jsx-example', { render () { // h 会自动注入 return <div id="foo">bar</div> }, myMethod: function () { // h 不会注入 return <div id="foo">bar</div> }, someOtherMethod: () => { // h 不会注入 return <div id="foo">bar</div> }})@Componentclass App extends Vue { get computed () { // h 会自动注入 return <div id="foo">bar</div> }}
Vue JSX 和 React JSX对比
首先, Vue2.0 的vnode 格式与react不同,createElement
函数的第二个参数是一个数据对象,接受一个嵌套的对象,每一个嵌套对象都会有对应的模块处理。
Vue2.0 render语法
render (h) { return h('div', { // 组件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' })}
新闻热点
疑难解答
图片精选