1
1
# Vue 3 Babel JSX 插件
2
2
3
- ![ test] ( https://github.com/vueComponent/jsx/workflows/test/badge.svg ) [ ![ npm package] ( https://img.shields.io/npm/v/@ant-design-vue/babel-plugin-jsx.svg?style=flat-square )] ( https://www.npmjs.com/package/@ant-design-vue/babel-plugin-jsx )
3
+ ![ test] ( https://github.com/vueComponent/jsx/workflows/test/badge.svg ) [ ![ npm package] ( https://img.shields.io/npm/v/@ant-design-vue/babel-plugin-jsx.svg?style=flat-square )] ( https://www.npmjs.com/package/@ant-design-vue/babel-plugin-jsx )
4
4
5
5
以 JSX 的方式来编写 Vue 代码
6
6
7
+ [ English] ( /packages/babel-plugin-jsx/README.md ) | 简体中文
8
+
7
9
## 安装
8
10
9
11
安装插件
10
12
11
- ```
13
+ ``` bash
12
14
npm install @ant-design-vue/babel-plugin-jsx -D
13
15
```
14
16
15
17
配置 Babel
16
18
17
- ```
19
+ ``` js
18
20
{
19
21
" plugins" : [" @ant-design-vue/babel-plugin-jsx" ]
20
22
}
@@ -40,17 +42,17 @@ npm install @ant-design-vue/babel-plugin-jsx -D
40
42
函数式组件
41
43
42
44
``` jsx
43
- const App = () => < div>< / div>
45
+ const App = () => < div>< / div> ;
44
46
```
45
47
46
48
在 render 中使用
47
49
48
50
``` jsx
49
51
const App = {
50
52
render () {
51
- return < div> Vue 3.0 < / div>
53
+ return < div> Vue 3.0 < / div> ;
52
54
}
53
- }
55
+ };
54
56
```
55
57
56
58
``` jsx
@@ -65,8 +67,8 @@ const App = defineComponent(() => {
65
67
< div onClick= {inc}>
66
68
{count .value }
67
69
< / div>
68
- )
69
- })
70
+ );
71
+ });
70
72
```
71
73
72
74
Fragment
@@ -77,25 +79,25 @@ const App = () => (
77
79
< span> I ' m</span>
78
80
<span>Fragment</span>
79
81
</>
80
- )
82
+ );
81
83
```
82
84
83
- ### Attributes/ Props
85
+ ### Attributes / Props
84
86
85
87
```jsx
86
- const App = () => <input type="email" />
88
+ const App = () => <input type="email" />;
87
89
```
88
90
89
91
with a dynamic binding:
90
92
91
93
```jsx
92
- const placeholderText = ' email'
94
+ const placeholderText = ' email' ;
93
95
const App = () => (
94
96
<input
95
97
type="email"
96
98
placeholder={placeholderText}
97
99
/>
98
- )
100
+ );
99
101
```
100
102
101
103
### 指令
@@ -155,7 +157,7 @@ const App = {
155
157
/>
156
158
);
157
159
},
158
- }
160
+ };
159
161
```
160
162
161
163
### 插槽
@@ -166,10 +168,10 @@ const App = {
166
168
const slots = {
167
169
a: () => <div>A</div>,
168
170
b: () => <span>B</span>
169
- }
170
- return () => <A vSlots={slots} />
171
+ };
172
+ return () => <A vSlots={slots} />;
171
173
}
172
- }
174
+ };
173
175
```
174
176
175
177
## 谁在用
0 commit comments