Skip to content

Commit 6b0b753

Browse files
xrkffggAmour1688
andauthored
docs: optimize Readme and add link (#35)
* docs: optimize Readme and add link Co-authored-by: Amour1688 <[email protected]>
1 parent b205dd4 commit 6b0b753

File tree

3 files changed

+138
-255
lines changed

3 files changed

+138
-255
lines changed

README.md

-211
This file was deleted.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/babel-plugin-jsx/README.md

README-zh_CN.md packages/babel-plugin-jsx/README-zh_CN.md

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
# Vue 3 Babel JSX 插件
22

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)
44

55
以 JSX 的方式来编写 Vue 代码
66

7+
[English](/packages/babel-plugin-jsx/README.md) | 简体中文
8+
79
## 安装
810

911
安装插件
1012

11-
```
13+
```bash
1214
npm install @ant-design-vue/babel-plugin-jsx -D
1315
```
1416

1517
配置 Babel
1618

17-
```
19+
```js
1820
{
1921
"plugins": ["@ant-design-vue/babel-plugin-jsx"]
2022
}
@@ -40,17 +42,17 @@ npm install @ant-design-vue/babel-plugin-jsx -D
4042
函数式组件
4143

4244
```jsx
43-
const App = () => <div></div>
45+
const App = () => <div></div>;
4446
```
4547

4648
在 render 中使用
4749

4850
```jsx
4951
const App = {
5052
render() {
51-
return <div>Vue 3.0</div>
53+
return <div>Vue 3.0</div>;
5254
}
53-
}
55+
};
5456
```
5557

5658
```jsx
@@ -65,8 +67,8 @@ const App = defineComponent(() => {
6567
<div onClick={inc}>
6668
{count.value}
6769
</div>
68-
)
69-
})
70+
);
71+
});
7072
```
7173

7274
Fragment
@@ -77,25 +79,25 @@ const App = () => (
7779
<span>I'm</span>
7880
<span>Fragment</span>
7981
</>
80-
)
82+
);
8183
```
8284
83-
### Attributes/Props
85+
### Attributes / Props
8486
8587
```jsx
86-
const App = () => <input type="email" />
88+
const App = () => <input type="email" />;
8789
```
8890
8991
with a dynamic binding:
9092
9193
```jsx
92-
const placeholderText = 'email'
94+
const placeholderText = 'email';
9395
const App = () => (
9496
<input
9597
type="email"
9698
placeholder={placeholderText}
9799
/>
98-
)
100+
);
99101
```
100102
101103
### 指令
@@ -155,7 +157,7 @@ const App = {
155157
/>
156158
);
157159
},
158-
}
160+
};
159161
```
160162
161163
### 插槽
@@ -166,10 +168,10 @@ const App = {
166168
const slots = {
167169
a: () => <div>A</div>,
168170
b: () => <span>B</span>
169-
}
170-
return () => <A vSlots={slots} />
171+
};
172+
return () => <A vSlots={slots} />;
171173
}
172-
}
174+
};
173175
```
174176
175177
## 谁在用

0 commit comments

Comments
 (0)