欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

get到了一个移动端调试工具VConsole

程序员文章站 2024-01-13 19:43:22
...

vconsole github地址:https://github.com/Tencent/vConsole

ionic4中应用

1.

npm install vconsole

2.angular.json

"scripts": ["node_modules/vconsole/dist/vconsole.min.js"]

 

3. app.component.ts 

const VConsole = require('VConsole');

@Component({
  selector: 'app-root',
  templateUrl: 'app.component.html',
  styleUrls: ['app.component.scss']
})

export class AppComponent {
  constructor() {
    const vConsole = new VConsole();
  }
}

 

相关标签: 移动端调试工具