JSX for Vue 3
Go to file
Amour1688 b5a91efd93 jsx
2020-05-13 19:14:28 +08:00
example jsx 2020-05-13 19:14:28 +08:00
src jsx 2020-05-13 19:14:28 +08:00
test jsx 2020-05-13 19:14:28 +08:00
.babelrc jsx 2020-05-13 19:14:28 +08:00
.eslintrc jsx 2020-05-13 19:14:28 +08:00
.gitignore jsx 2020-05-13 19:14:28 +08:00
.jest.js jsx 2020-05-13 19:14:28 +08:00
index.html jsx 2020-05-13 19:14:28 +08:00
LICENSE Initial commit 2020-05-08 16:58:50 +08:00
package.json jsx 2020-05-13 19:14:28 +08:00
README.md jsx 2020-05-13 19:14:28 +08:00
webpack.config.js jsx 2020-05-13 19:14:28 +08:00

Babel Preset JSX for Vue 3.0

To add Vue JSX support.

Syntax

functional component

const App = () => <div></div>

with setup render

const App = defineComponent(() => {
  const count = ref(0);
  return () => (
    <div>
      {count.value}
    </div>
  )
})