mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-13 02:59:13 +08:00
docs: update README
This commit is contained in:
parent
5b6323f22a
commit
a0a60ee46d
@ -213,6 +213,23 @@ const App = {
|
|||||||
return () => <A v-slots={slots} />;
|
return () => <A v-slots={slots} />;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// or
|
||||||
|
const App = {
|
||||||
|
setup() {
|
||||||
|
return () => (
|
||||||
|
<>
|
||||||
|
<A>
|
||||||
|
{
|
||||||
|
default: () => <div>A</div>,
|
||||||
|
foo: () => <span>B</span>
|
||||||
|
}
|
||||||
|
</A>
|
||||||
|
<B>{() => 'foo'}</B>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### 在 TypeSript 中使用
|
### 在 TypeSript 中使用
|
||||||
|
@ -213,6 +213,23 @@ const App = {
|
|||||||
return () => <A v-slots={slots} />;
|
return () => <A v-slots={slots} />;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// or
|
||||||
|
const App = {
|
||||||
|
setup() {
|
||||||
|
return () => (
|
||||||
|
<>
|
||||||
|
<A>
|
||||||
|
{
|
||||||
|
default: () => <div>A</div>,
|
||||||
|
foo: () => <span>B</span>
|
||||||
|
}
|
||||||
|
</A>
|
||||||
|
<B>{() => 'foo'}</B>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### In TypeScript
|
### In TypeScript
|
||||||
|
Loading…
Reference in New Issue
Block a user