前端Vue组件运行步骤

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组件运行步骤)