React 怎么用 await

#1

babel7transfomr-runtime 插件能用吗?

#2

可以用啊,跟await没有关系吧

#3

async foo() {
let ret = await request();
return ret;
}

这样?