欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

xmalls商城实战

程序员文章站 2022-03-08 15:36:53
这里写目录标题1、构建项目2、项目笔记1、构建项目1、创建项目vue create xmall-front2、选择预设Manually select features3、选择router 、vuex(Linter / Formatter处理写代码的时候可能出现的错误)回车构建项目4、cd xmall_front/5、npm run serve. 成功后, 初始化项目完成6、添加UI:vue add element7、添加预处理器(Sass/Less/Stylus):npm ins...

这里写目录标题

1、构建项目

1、创建项目
vue create xmall-front
2、选择预设
Manually select features
3、
选择router 、vuex
(Linter / Formatter处理写代码的时候可能出现的错误)
回车构建项目
4、cd xmall_front/
5、npm run serve. 成功后, 初始化项目完成
6、添加UI:vue add element
7、添加预处理器(Sass/Less/Stylus):npm install -D sass-loader node-sass
8、添加接口工具:cnpm i axios -S / npm install axios --save
9、添加图片懒加载:npm install vue-lazyload --save

2、项目笔记

xmalls商城实战

本文地址:https://blog.csdn.net/qq_33575051/article/details/114324421

相关标签: 前端