mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +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} />;
|
||||
}
|
||||
};
|
||||
|
||||
// or
|
||||
const App = {
|
||||
setup() {
|
||||
return () => (
|
||||
<>
|
||||
<A>
|
||||
{
|
||||
default: () => <div>A</div>,
|
||||
foo: () => <span>B</span>
|
||||
}
|
||||
</A>
|
||||
<B>{() => 'foo'}</B>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 在 TypeSript 中使用
|
||||
|
@ -213,6 +213,23 @@ const App = {
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user