li.shaoyi 3 年 前
コミット
172eb0d11b
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/common/components/btnList/interface.ts

+ 2 - 2
src/common/components/btnList/interface.ts

@@ -1,7 +1,7 @@
 export type BtnClassName = 'btnDeafault' | 'btnPrimary' | 'btnDanger' | 'operBtn'
 export interface BtnListType {
-    lable?: string;  // 按钮名字
+    lable: string;  // 按钮名字
     code: string;   //
     callback?: Function;
-    className?: BtnClassName    // 按钮 class 名字
+    className: BtnClassName    // 按钮 class 名字
 }