mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
1bce4df00a
Co-authored-by: Pooya Parsa <pooya@pi0.io>
27 lines
685 B
Vue
27 lines
685 B
Vue
<script lang="tsx" setup>
|
|
// Component could be a simple function with JSX syntax
|
|
const Welcome = () => <span>Welcome </span>
|
|
|
|
// Or using defineComponent setup that returns render function with JSX syntax
|
|
const Nuxt3 = defineComponent(() => {
|
|
return () => <span>nuxt3</span>
|
|
})
|
|
|
|
// We can combine components with JSX syntax too
|
|
const InlineComponent = () => (
|
|
<div>
|
|
<Welcome />
|
|
<span>to </span>
|
|
<Nuxt3 />
|
|
</div>
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout example="advanced/jsx">
|
|
<InlineComponent />
|
|
<!-- Defined in components/jsx-component.ts -->
|
|
<MyComponent message="This is an external JSX component" />
|
|
</NuxtExampleLayout>
|
|
</template>
|