vue原型超简单上手指南

2020-11-26  本文已影响0人  JohnYuCN

以win 10为例:

  1. node及npm 的安装
  2. 镜像设置
npm get registry #获取npm下载镜像
npm set registry  http://registry.npm.taobao.org/
  1. 安装cli及server/build
npm install -g @vue/cli
npm install -g @vue/cli-service-global
  1. win10的特殊设置(允许直接执行vue js脚本):

windows powershell(管理员),进入终端后,执行:

set-ExecutionPolicy RemoteSigned
  1. 建立文件:
// App.vue
<template>
    <div>
        <h1>Hello world123!</h1>
    </div>
</template>
  1. 执行及构建:
vue serve App.vue
vue build App.vue
上一篇下一篇

猜你喜欢

热点阅读