以win 10为例:
- node及npm 的安装
- 镜像设置
npm get registry #获取npm下载镜像
npm set registry http://registry.npm.taobao.org/
- 安装cli及server/build
npm install -g @vue/cli
npm install -g @vue/cli-service-global
- win10的特殊设置(允许直接执行vue js脚本):
windows powershell(管理员),进入终端后,执行:
set-ExecutionPolicy RemoteSigned
- 建立文件:
// App.vue
<template>
<div>
<h1>Hello world123!</h1>
</div>
</template>
- 执行及构建:
vue serve App.vue
vue build App.vue
网友评论