方法使用
// 推荐
export function say () {
}
export function see () {
}
// 不推荐
export default function getSomethings () {
}
不建议使用 export default,建议使用 export。 如果是提供一个基础功能,建议通过 class 实现,可以通过 class 的静态方法实现。
// 推荐
export function say () {
}
export function see () {
}
// 不推荐
export default function getSomethings () {
}
不建议使用 export default,建议使用 export。 如果是提供一个基础功能,建议通过 class 实现,可以通过 class 的静态方法实现。