Gathering detailed insights and metrics for @ant-design-vue/babel-plugin-jsx
Gathering detailed insights and metrics for @ant-design-vue/babel-plugin-jsx
Gathering detailed insights and metrics for @ant-design-vue/babel-plugin-jsx
Gathering detailed insights and metrics for @ant-design-vue/babel-plugin-jsx
npm install @ant-design-vue/babel-plugin-jsx
Typescript
Module System
Node Version
NPM Version
69.1
Supply Chain
98.2
Quality
80.6
Maintenance
100
Vulnerability
100
License
TypeScript (96.31%)
JavaScript (2%)
CSS (1.3%)
HTML (0.39%)
Total Downloads
3,871,650
Last Day
1,089
Last Week
2,983
Last Month
10,190
Last Year
130,588
MIT License
1,748 Stars
407 Commits
148 Forks
24 Watchers
2 Branches
95 Contributors
Updated on Apr 03, 2025
Minified
Minified + Gzipped
Latest Version
1.0.0-rc.1
Package Id
@ant-design-vue/babel-plugin-jsx@1.0.0-rc.1
Size
9.11 kB
NPM Version
6.14.5
Node Version
12.18.1
Published on
Jul 29, 2020
Cumulative downloads
Total Downloads
Last Day
149.2%
1,089
Compared to previous day
Last Week
31.2%
2,983
Compared to previous week
Last Month
3.1%
10,190
Compared to previous month
Last Year
-34.2%
130,588
Compared to previous year
8
21
To add Vue JSX support.
English | 简体中文
Install the plugin with:
1npm install @ant-design-vue/babel-plugin-jsx -D
Then add the plugin to .babelrc:
1{ 2 "plugins": ["@ant-design-vue/babel-plugin-jsx"] 3}
Type: boolean
Default: false
transform on: { click: xx }
to onClick: xxx
Type: boolean
Default: false
enable optimization or not. It's not recommended to enable it If you are not familiar with Vue 3.
Type: (tag: string) => boolean
Default: undefined
configuring custom elements
functional component
1const App = () => <div></div>;
with render
1const App = { 2 render() { 3 return <div>Vue 3.0</div>; 4 } 5};
1const App = defineComponent(() => { 2 const count = ref(0); 3 4 const inc = () => { 5 count.value++; 6 }; 7 8 return () => ( 9 <div onClick={inc}> 10 {count.value} 11 </div> 12 ); 13});
1import { withModifiers } from 'vue'; 2 3const App = () => { 4 const count = ref(0); 5 6 const inc = () => { 7 count.value++; 8 }; 9 10 return () => ( 11 <div onClick={withModifiers(inc, ['self'])}> 12 {count.value} 13 </div> 14 ); 15}
Fragment
1const App = () => ( 2 <> 3 <span>I'm</span> 4 <span>Fragment</span> 5 </> 6);
1const App = () => <input type="email" />;
with a dynamic binding:
1const placeholderText = 'email'; 2const App = () => ( 3 <input 4 type="email" 5 placeholder={placeholderText} 6 /> 7);
v-show
1const App = { 2 data() { 3 return { visible: true }; 4 }, 5 render() { 6 return <input v-show={this.visible} />; 7 }, 8};
v-model
Note: You should pass the second param as string for using
arg
.
1<input v-model={val} />
1<input v-model={[val, ['trim']]} />
1<A v-model={[val, 'foo', ['bar']]} />
Will compile to:
1h(A, { 2 'foo': val, 3 "fooModifiers": { 4 "bar": true 5 }, 6 "onUpdate:foo": $event => val = $event 7})
custom directive
1const App = { 2 directives: { custom: customDirective }, 3 setup() { 4 return () => ( 5 <a 6 v-custom={[val, 'arg', ['a', 'b']]} 7 /> 8 ); 9 }, 10};
1const App = { 2 setup() { 3 const slots = { 4 default: () => <div>A</div>, 5 foo: () => <span>B</span> 6 }; 7 return () => <A v-slots={slots} />; 8 } 9};
![]() Ant Design Vue |
![]() Vant |
This repo is only compatible with:
No vulnerabilities found.
No security vulnerabilities found.