问题:为什么点击终端的链接,跳转页面报错"Vue.js devtools" is not allowed to access,而且终端也没有打印出”this is a word“?我只有这个html代码,没有放在vue项目里面的。
```html
const http = require('http')
const serve=http.createServer()
serve.on('request',function(req,res){
console.log('this is a word');
})
serve.listen(8080,function(){
console.log(
'serve running at http://127.0.0.1'
);
})

少了端口号,你应该要访问:
http://127.0.0.1:8080