You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yezihaohao edited this page Mar 20, 2018
·
1 revision
项目中webpack的一些额外的配置说明
项目路径别名配置:alias增加别名符号和对应的路径地址
'@': paths.appSrc
// 使用规则
// old
import BreadcrumbCustom from '../../../components/BreadcrumbCustom';
// new 简化相对路径写法
import BreadcrumbCustom from '@/components/BreadcrumbCustom';