country.js 230 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 const country = [{ value: 'CN', label: '中国' }, { value: 'US', label: '美国' }, { value: 'JP', label: '日本' }, { value: 'UN', label: '英国' }, { value: 'EL', label: '欧盟' }] export default country