可使用 npm 进行安装
GitHub 地址:https://github.com/Tencent/vC…
npm install vconsole
在项目的根 html 文件的 <head> 标签中引入 dist/vconsole.min.js
<script src=”path/to/vconsole.min.js”></script>
<script>
// init vConsole
var vConsole = new VConsole();
console.log(‘Hello world’);
</script>
也可使用 CDN 免安装
CDN 地址:https://www.bootcdn.cn/vConsole/
<script src=”https://cdn.bootcss.com/vConsole/3.2.2/vconsole.min.js”></script>
<script>
var vConsole = new VConsole();
console.log(‘hello world’)
</script>
同样需要放在项目根 html 文件的 <head> 标签中