Babel Preset JSX
Configurable Babel preset to add Vue JSX support. See the configuration options here.
Installation
Install the preset with:
npm install @vue/babel-preset-jsx @vue/babel-helper-vue-jsx-merge-props
复制代码
Then add the preset to .babelrc
:
{
"presets": ["@vue/babel-preset-jsx"]
}
复制代码
Syntax
Content
render() {
return <p>hello</p>
}
复制代码
with dynamic content:
render() {
return <p>hello { this.message }</p>
}
复制代码
when self-closing:
render() {
return <input />
}
复制代码
with a component:
import MyComponent from './my-component'
export default {
render() {
return <MyComponent>hello</MyComponent>
}
}
复制代码
Attributes/Props
render() {
return <input type="email" />
}
复制代码
with a dynamic binding:
render() {
return <input
type="email"
placeholder={this.placeholderText}
/>
}
复制代码
with the spread operator (object needs to be compatible with Vue Data Object):
render() {
const inputAttrs = {
type: 'email',
placeholder: 'Enter your email'
}
return <input {...{ attrs: inputAttrs }} />
}
复制代码
Directives
<input vModel="newTodoText" />
复制代码
with a modifier:
<input vModel_trim="newTodoText" />
复制代码
with an argument:
<input vOn:click="newTodoText" />
复制代码
with an argument and modifiers:
<input vOn:click_stop_prevent="newTodoText" />
复制代码
Functional Components
Transpiles arrow functions that return JSX into functional components, when they are either default exports:
export default ({ props }) => <p>hello { props.message }</p>
复制代码
or PascalCase variable declarations:
const HelloWorld = ({ props }) => <p>hello { props.message }</p>
复制代码
Compatibility
This repo is only compatible with:
- Babel 7+. For Babel 6 support, use vuejs/babel-plugin-transform-vue-jsx
- Vue 2+. JSX is not supported for older versions.