Vue获取当前用户ip

来自泡泡学习笔记
跳到导航 跳到搜索
const os = require('os');

function getNetworkIp() {
    
    let network = os.networkInterfaces();
    ...
}