npm install @vue/cli -g vue init webpack project cd project
npm run dev
vue 正式服 nginx 配置
location / {
# dist为静态资源文件夹,dist内有index.html,
#root dist;
index index.html index.htm;
# 解决单页面应用中history模式不能刷新的bug
try_files $uri $uri/ /index.html;
}
vue 客户端创建项目
vue create projectname
vue add axios
vue add vuex
vue add element-ui