美文网首页
前端Vue组件运行步骤

前端Vue组件运行步骤

作者: GongLai | 来源:发表于2019-07-26 20:28 被阅读0次

    1.安装和配置相关软件与环境

    # 1.安装node版本管理工具nvm
      curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
        
    # 2.更新配置[.bashrc在家目录下]
      source .bashrc  
    
    # 3.安装最新版本的node
      nvm install node
    
    # 4.更新npm的安装源
      npm config set registry https://registry.npm.taobao.org
        
    # 5.全局安装vue-cli
      npm install --global vue-cli
    

    2.进入到前端项目所在文件夹后执行以下命令,即可进入调试开发阶段

    # 1.安装项目依赖模块
      npm install
    
    # 2.运行调试项目
      npm run dev
    

    相关文章

      网友评论

          本文标题:前端Vue组件运行步骤

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