Axios如何同时执行多个GET?

如下图,我想让图中的CPU,内存以及网络数据包获取函数同时执行应该怎么办?
JS部分

img


Vue Template部分

img

axios.all


const fn = () => {
Promise.all([fn1(),fn2(),fn3()])
}

runAllRequests() {
    Promise.all([this.getCPU(), this.getMen(), this.getNet()]).then((res) => {
        console.log('res', res);
    });
}

公用promise