初始化项目, 添加TDesign等包
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
module.exports.format = function (num) {
|
||||
return num < 10 ? '0' + num : num;
|
||||
};
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,3 @@
|
||||
module.exports.format = function (num) {
|
||||
return num < 10 ? '0' + num : num;
|
||||
};
|
||||