我正在处理一个打字稿代码,我想在其中实现开关案例语句。自动缩进时,case内的代码无法正确缩进。
switch (view) {
case "home":
this.initializeCards();
this.getDBcards();
break;
}
但是我该如何重新缩进
switch (view) {
case "home":
this.initializeCards();
this.getDBcards();
break;
}
谢谢。