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"] }
基础示例
转义前
<div id="foo">{this.text}</div>
转译后
h('div', { attrs: { id: 'foo' } }, [this.text])
Noteh
函数为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.ponent('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> } }) @Component class App extends Vue { get puted () { // 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`狼蚁网站SEO优化的,所以将不支持修饰符,如`v-on:keyup.enter`,只能在代码中手动判断keyCode on: { click: this.clickHandler }, // For ponents only. Allows you to listen to // native events, rather than events emitted from // the ponent 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 -level properties key: 'key', ref: 'ref', // assign the `ref` is used on elements/ponents with v-for refInFor: true, slot: 'slot' }) }
对应的Vue2.0 JSX语法
render (h) { return ( <div // normal attributes or ponent 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 -level properties class={{ foo: true, bar: false }} style={{ color: 'red', fontSize: '14px' }} key="key" ref="ref" // assign the `ref` is used on elements/ponents with v-for refInFor slot="slot"> </div> ) }
JSX展开运算符
支持JSX展开,插件会智能的合并数据属性,如
const data = { class: ['b', 'c'] } const vnode = <div class="a" {...data}/>
合并后的数据为
{ class: ['a', 'b', 'c'] }
Vue 指令
JSX对大多数的Vue内建指令都不支持,唯一的例外是v-show
,该指令可以使用v-show={value}
的语法。大多数指令都可以用编程方式实现,比如v-if
就是一个三元表达式,v-for
就是一个array.map()
等。
如果是自定义指令,可以使用v-name={value}
语法,改语法不支持指令的参数arguments
和修饰器modifier
。有以下两个解决方法
将所有内容以一个对象传入,如v-name={{ value, modifier: true }}
使用原生的vnode指令数据格式,如
const directives = [ { name: 'my-dir', value: 123, modifiers: { abc: true } } ] return <div {...{ directives }}/>
原文地址()
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程