constant.ts 217 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 import type { DropMenu } from '/@/components/Dropdown'; // locale list export const localeList: DropMenu[] = [ { text: '简体中文', event: 'zh_CN', }, { text: 'English', event: 'en', }, ];