1.1.0 • Published 5 years ago

myself_vconsole v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

基本使用请查看VConsole官方文档

新增功能点

  • 默认改为隐藏,不影响测试,快速点击左下角5次后可调出vconsole面板

    可设置defaultShow为true保持默认展示状态

    new VConsole({
      defaultShow: true
    })
  • 增加域名配置,可设置仅在某些域名下可用。

    默认只在域名含有localhost和test环境中使用。beta以及线上不生效

    如需更改匹配域名,增加envs字段,则会覆盖默认localhosttest

    比如

    new VConsole({
        envs: ['192'] // 只在本地ip访问生效,localhost也不会生效
    }