作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在docker中使用vue-cli,需要将服务绑定(bind)到局域网IP,或者绑定(bind)到0.0.0.0
为了“本地”访问它们。
我期待 --host 0.0.0.0
,但那不存在。$ vue ui
🚀 Starting GUI...
🌠 Ready on http://localhost:8000$ vue ui -h
Usage: ui [options]
start and open the vue-cli ui
Options:
-p, --port <port> Port used for the UI server (by default search for awailable port)
-D, --dev Run in dev mode
--quiet Don't output starting messages
--headless Don't open browser on start and output port
-h, --help output usage information
最佳答案
我正在使用 Vue.js在 Vagrant 内例如开发,最初有同样的问题。
看起来 -H/--host 选项是在 vue-cli 版本 3.1.0 中添加的:
https://github.com/vuejs/vue-cli/pull/2568
$ vue --version
3.1.3
$ vue ui -h
Usage: ui [options]
start and open the vue-cli ui
Options:
-H, --host <host> Host used for the UI server (default: localhost)
-p, --port <port> Port used for the UI server (by default search for available port)
-D, --dev Run in dev mode
--quiet Don't output starting messages
--headless Don't open browser on start and output port
-h, --help output usage information
$ vue ui -H 0.0.0.0
🚀 Starting GUI...
🌠 Ready on http://0.0.0.0:8000
关于vue-cli - 如何将 `vue ui` 绑定(bind)到另一个 IP? (vue-cli 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51250588/
我是一名优秀的程序员,十分优秀!