# 移动端网页控制台

# 1. 介绍

移动端网页 控制台 JS 插件。

# 2. vConsole

说明:

缺点:

  • 不支持样式查看及审查元素

使用:

  • 安装:

    npm install vconsole
    
  • 使用:

    import VConsole from 'vconsole';
    
    const vConsole = new VConsole();
    // or init with options
    const vConsole = new VConsole({ theme: 'dark' });
    
    // call `console` methods as usual
    console.log('Hello world');
    
    // remove it when you finish debugging
    vConsole.destroy();
    

# 3. eruda

说明:

使用:

  • 安装:

    npm install eruda
    
  • 使用:

    import eruda from 'eruda';
    
    eruda.init();
    
本章目录