我正在使用babel es6类:
export class Util{
async stringy(str){
return await str
}
}
然后我导入它
import Util from '../lib/util'
但未定义。
答案 0 :(得分:0)
// util.js
export class Util{
async stringy(str){
return await str
}
}
// other.js
import { Util } from '../lib/util'
或
// util.js
export default class Util{
async stringy(str){
return await str
}
}
// other.js
import Util from '../lib/util'