40
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

export defaultは import { default }で受け取れる

Posted at

ES6のモジュールシステムで
モジュールをまとめてindexするだけのモジュールを書く時など、
インポートしたモジュールをそのままエクスポートしたい時に、
以下のような構文がありますが、

foo.js
export class Foo {}
index.js
export { Foo } from './foo';

exportだけによるNamed exportであれば問題ないのですが、
Default exportされたモジュールをそのままエクスポートしようとすると

index.js
export Foo from './foo'; // Error

どうしても構文エラーになります。

Default exportされたモジュールをそのままエクスポートしたい時は

index.js
export { default as Foo } from './foo';

とするといいみたいです。

なぜこうなるかというと、

foo.js
export default class Foo {}
index.js
import { default } from './foo';

export defaultされたモジュールは、上記のように
Named import構文でdefaultという名前で受け取ることができるみたいです。

参考

import - JavaScript | MDN

typescript-export-vs-default-export | stackoverflow.com

40
25
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
40
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?