mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-01 18:07:22 +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'
|
||
|
},
|
||
|
})
|