babel-plugin-jsx/README.md

25 lines
287 B
Markdown
Raw Normal View History

2020-05-13 19:14:28 +08:00
# Babel Preset JSX for Vue 3.0
To add Vue JSX support.
## Syntax
functional component
```jsx
const App = () => <div></div>
```
with setup render
```jsx
const App = defineComponent(() => {
const count = ref(0);
return () => (
<div>
{count.value}
</div>
)
})
```