vue 过滤器 驼峰与短横线相互转换的方法
自己去注册吧,提供的是es6导出的方法
//短横线转驼峰
export const dashToHump = function (value) {
const textArr = value.split("-");
return textArr.map((item, index) => {
if (index === 0) return item.toLowerCase();
return item.slice(0, 1).toUpperCase() + item.slice(1);
})
.join("");
}
//驼峰转短横线
export const humpToDash = function (value) {
return value.replace(/([A-Z])/g, "-$1").toLowerCase()
}
版权申明
本文系作者 @木灵鱼儿 原创发布在木灵鱼儿站点。未经许可,禁止转载。
全部评论 2
linuli
Google Chrome Windows 10木灵鱼儿
FireFox Windows 10