美文网首页
vue原型超简单上手指南

vue原型超简单上手指南

作者: JohnYuCN | 来源:发表于2020-11-26 16:02 被阅读0次

    以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
    

    相关文章

      网友评论

          本文标题:vue原型超简单上手指南

          本文链接:https://www.haomeiwen.com/subject/mqfziktx.html