기본 내보내기와 명명된 내보내기
export default function A() {}
// vs
export function A() {}
두 가지 방법 모두 좋다고 생각합니다. 하지만 명명된 내보내기의 몇 가지 이점을 볼 수 있습니다.
명명된 내보내기는 가져오기 이름을 암시적으로 변경할 수 없습니다.
// No error with default export
import Button from '../components/Text'
// now we have a "Button" component
// which is actually a "Text" component
// TypeScript will throw and error
// if import and export names don't match
import { Button } from '../components/Text'
// we will get an error here
명명된 내보내기는 다시 내보내고 구성하기가 더 쉽습니다.
components
폴더 안에 여러 UI 구성 요소가 있다고 가정합니다. 개별 파일의 각 구성요소: components/Header.tsx
, components/Text.tsx
, components/Button.tsx
등이제 이러한 구성 요소를
import { Header, Text, Button } from '../components'
로 가져올 수 있으려면 components/index.ts
를 생성하기만 하면 됩니다.export * from './Header'
export * from './Text'
export * from './Button'
다음을 작성해야 하는 기본 내보내기와 비교하십시오.
export { default as Header } from './Header'
export { default as Text } from './Text'
export { default as Button } from './Button'
명명된 내보내기는 쓰기가 더 짧습니다.
export function Component() {}
// or
export const Component = () => {}
기본 내보내기와 비교:
export default function Component() {}
// or
const Component = () => {}
export default Component
질문이나 의견이 있으면 아래에 게시하고 💖 버튼을 누르면 행복한 해킹! 🙌🏻
학점
사진 제공: Sergey Sokolov on Unsplash
Reference
이 문제에 관하여(기본 내보내기와 명명된 내보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vladimirvovk/default-exports-vs-named-exports-2jm0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)