peach a19a732be8 commit message | há 2 anos atrás | |
---|---|---|
.. | ||
dist | há 2 anos atrás | |
README.md | há 2 anos atrás | |
package.json | há 2 anos atrás |
Syntactic sugar for automatic h
inject in JSX.
Install the dependencies:
# for yarn:
yarn add @vue/babel-sugar-inject-h
# for npm:
npm install @vue/babel-sugar-inject-h --save
In your .babelrc
:
{
"plugins": ["@vue/babel-sugar-inject-h"]
}
However it is recommended to use the configurable preset instead.
This plugin automatically injects h
in every method that has JSX. By using this plugin you don't have to always specifically declare h
as first parameter in your render()
function.
// Without @vue/babel-sugar-inject-h
export default {
render (h) {
return <button />
}
}
// With @vue/babel-sugar-inject-h
export default {
render () {
return <button />
}
}