composables/ 디렉터리를 사용하여 Vue 컴포저블을 애플리케이션에 자동으로 임포트합니다. 사용법 방법 1 : 명명된 내보내기 // composables/useFoo.ts export const useFoo = () => { return useState('foo', () => 'bar') } 방법 2 : 기본 내보내기 // composables/use-foo.ts or composables/useFoo.ts // It will be available as useFoo() (camelCase of file name without extension) export default function () { return useState('foo', () => 'bar') } 이제 자동으로 임포트된 .js, ..
2023. 12. 17. 02:04 / Tech정개블