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

vue-cli随机生成port源码的方法

程序员文章站 2022-05-14 16:41:58
vue-cli随机生成port源码的方法 const portfinder = require('portfinder'); const port = awai...

vue-cli随机生成port源码的方法

const portfinder = require('portfinder');
const port = await portfinder.getportpromise();

两行代码

端口搜索范围

默认情况下,portfinder将开始搜索8000并扫描,直到达到最大端口号(65535)

源码的路径是在

知识点扩展:

vue 随机色生成

把标题的颜色设置成随机色

<h4 v-rainbow>标题随机色</h4>

在script写局部自定义指令(如果想要写全局的需要在main.js里面书写)

局部

 directives:{
  'rainbow':{
    bind(el,binding,vnode){
    el.style.color = '#' + math.random().tostring(16).slice(2,8);//随机颜色
   }
  },
 }

全局(main.js)

vue.directive("rainbow",{
  bind(el,bind,vnode){
   el.style.color = '#' + math.random().tostring(16).slice(2,8);//随机颜色
  }
})

总结

以上所述是小编给大家介绍的vue-cli随机生成port源码,希望对大家有所帮助