首页 > 其他 > 详细

supermall项目

时间:2021-03-26 22:58:31      阅读:29      评论:0      收藏:0      [点我收藏+]

项目地址:https://github.com/T-1201/supermall

1、初步划分目录结构

技术分享图片

 

 

2、引入css文件

技术分享图片

 

 

3、vue.config.js和.editorconfig

创建vue.config.js文件,给项目目录起别名,便于开发

module.exports = {
    configureWebpack: {
        resolve: {
            alias: {
                ‘assets‘: ‘@/assets‘,
                ‘common‘: ‘@/common‘,
                ‘components‘: ‘@/components‘,
                ‘network‘: ‘@/network‘,
                ‘views‘: ‘@/views‘
            }
        }
    }
}

  

.editorconfig

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

  

 

supermall项目

原文:https://www.cnblogs.com/tang321/p/14584421.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!