mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
1bce4df00a
Co-authored-by: Pooya Parsa <pooya@pi0.io>
13 lines
163 B
TypeScript
13 lines
163 B
TypeScript
export default defineComponent({
|
|
props: {
|
|
message: String
|
|
},
|
|
render: (props) => {
|
|
return (
|
|
<div>
|
|
{ props.message }
|
|
</div>
|
|
)
|
|
}
|
|
})
|