前言
功能如题,本文参考:https://www.jianshu.com/p/54daac2cc924,目的只是为了把网上查的资料做个笔记~
以下均为vue cli2 创建的项目
自动打开浏览器
只需要在config/index.js里找到autoOpenBrowser将其设为true即可
获取本地ip
方法一
在config/index.js 顶部添加1
2
3
4
5
6
7
8const os = require('os')
let localhost = ''
try {
const network = os.networkInterfaces()
localhost = network[Object.keys(network)[0]][1].address
} catch (e) {
localhost = 'localhost';
}