mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
813 B
813 B
icon | title | head.title |
---|---|---|
IconDirectory | composables | Composables directory |
Composables directory
Nuxt 3 supports composables/
directory to auto import your Vue composables into your application and use using auto imports!
Example: (using named exports)
import { useState } from '#app'
export const useFoo = () => {
return useState('foo', () => 'bar')
}
Example: (using default export)
import { useState } from '#app'
// It will be available as useFoo() (pascalCase of file name without extension)
export default function () {
return 'bar'
}
You can now auto import it:
<template>
<div>
{{ foo }}
</div>
</template>
<script setup>
const foo = useFoo()
</script>