Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created January 17, 2021 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/9f3e11a97fe83ac8047b6efae71bb6c1 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/9f3e11a97fe83ac8047b6efae71bb6c1 to your computer and use it in GitHub Desktop.
<script type="text/jsx">
import { defineComponent } from "vue";
const App = defineComponent({
setup() {
return () => (
<HelloWorld />
);
},
});
export default App
const HelloWorld = () => <h1>¡HOLA MUNDO CON JSX Y VUE 3!</h1>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment