UNPKG

tpa_web_component

Version:

TPA Web Components Library

25 lines (22 loc) 477 B
import { getOperatingSystem } from "../utils/errorCodeTurnText"; const plateform = getOperatingSystem() export const shortcutKeys = [ { value:'1', shortcutKey: plateform == 'Windows' ? 'Enter' : '↵(Return键)' }, { value: '2', shortcutKey: plateform == 'Windows' ? 'Ctrl + Enter' : '⌘↵(Return键)' } ] export const closeWindowChoiceKeys = [ { value:'1', label:'隐藏窗口' }, { value: '2', label:'关闭程序' } ]