mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 09:02:03 +00:00
14 lines
212 B
TypeScript
14 lines
212 B
TypeScript
import { defineComponent } from 'vue'
|
|
|
|
export const NamedExport = defineComponent({
|
|
setup () {
|
|
return () => 'hello'
|
|
},
|
|
})
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
return () => 'default'
|
|
},
|
|
})
|