Constant 
Modules can individually provide their own Constant
Initialize code skeleton 
1. Cli command 
bash
$ vona :init:constant home-index2. Menu command 
TIP
Context Menu - [Module Path]: Vona Init/Constant
Define Constant 
Taking the module home-index as an example, define the Constant of the module:
src/suite/a-home/modules/home-index/src/config/constants.ts
typescript
export const constants = {
  gender: {
    male: 1,
    female: 2,
  },
} as const;- Just define the required constants directly, and the system will automatically extract the type information of constants
 
Use Constant 
The Constant of the module can be obtained through the Scope instance
typescript
class ControllerHome {
  index() {
    console.log(this.scope.constant.gender.male);
    console.log(this.scope.constant.gender.female);
  }
}Use Constant cross-module 
typescript
class ControllerHome {
  index() {
    console.log(this.$scope.homeIndex.constant.gender.male);
    console.log(this.$scope.homeIndex.constant.gender.female);
  }
}