跳到主要内容

import

2023年12月20日
柏拉文
越努力,越幸运

一、认识


通过 import 以静态的方式,导入另一个通过 export 导出的模块。

二、语法


import MyModule from './my-module.js';
import { NamedExport } from './other-module.js';