![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | dist/ | 2 years ago | - | |
![]() | README.md | 40 years ago | 1.4K | d768d73 docs [كارل مبارك] |
![]() | package.json | 2 years ago | 2.3K | 3e510ca test new git [كارل مبارك] |
Syntactic sugar for functional components.
Install the dependencies:
# for yarn:
yarn add @vue/babel-sugar-functional-vue
# for npm:
npm install @vue/babel-sugar-functional-vue --save
In your .babelrc
:
{
"plugins": ["@vue/babel-sugar-functional-vue"]
}
However it is recommended to use the configurable preset instead.
This plugin transpiles arrow functions that return JSX into functional components but only if it's an uppercase variable declaration or default export:
// Original:
export const A = ({ props, listeners }) => <div onClick={listeners.click}>{props.msg}</div>
export const b = ({ props, listeners }) => <div onClick={listeners.click}>{props.msg}</div>
export default ({ props, listeners }) => <div onClick={listeners.click}>{props.msg}</div>
// Result:
export const A = {
functional: true,
render: (h, {
props,
listeners
}) => <div onClick={listeners.click}>{props.msg}</div>
}
export const b = ({ props, listeners }) => <div onClick={listeners.click}>{props.msg}</div>
export default {
functional: true,
render: (h, {
props,
listeners
}) => <div onClick={listeners.click}>{props.msg}</div>
}