mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
docs: update slot's description (#116)
* docs: update slot's description
This commit is contained in:
parent
0e2253b6a8
commit
4318ca17e0
@ -186,7 +186,24 @@ const App = {
|
||||
|
||||
### 插槽
|
||||
|
||||
> 注意: 在 `jsx` 中,应该使用 **`v-slots`** 代替 *`v-slot`*
|
||||
|
||||
```jsx
|
||||
const App = {
|
||||
setup() {
|
||||
const slots = {
|
||||
foo: () => <span>B</span>
|
||||
};
|
||||
return () => (
|
||||
<A v-slots={slots}>
|
||||
<div>A</div>
|
||||
</A>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
// or
|
||||
|
||||
const App = {
|
||||
setup() {
|
||||
const slots = {
|
||||
|
@ -186,7 +186,24 @@ const App = {
|
||||
|
||||
### Slot
|
||||
|
||||
> Note: In `jsx`, *`v-slot`* should be replace with **`v-slots`**
|
||||
|
||||
```jsx
|
||||
const App = {
|
||||
setup() {
|
||||
const slots = {
|
||||
foo: () => <span>B</span>
|
||||
};
|
||||
return () => (
|
||||
<A v-slots={slots}>
|
||||
<div>A</div>
|
||||
</A>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
// or
|
||||
|
||||
const App = {
|
||||
setup() {
|
||||
const slots = {
|
||||
|
Loading…
Reference in New Issue
Block a user