Named exports export function f() {} export const one = 1; export {foo, b as bar}; // Default exports export default function f() {} // declaration with ...
確定! 回上一頁