mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 18:25:58 +08:00
88 lines
2.8 KiB
JavaScript
88 lines
2.8 KiB
JavaScript
// **************************************************************************
|
|
// Add to end
|
|
|
|
/**
|
|
* @param {string} url github地址
|
|
* @param {string} logo logo地址
|
|
* @param {string} width 自定义宽度
|
|
*/
|
|
|
|
const users = [
|
|
{
|
|
url: 'https://github.com/ant-design/ant-design',
|
|
logo: 'https://avatars1.githubusercontent.com/u/12101536?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/vueComponent/ant-design-vue',
|
|
logo: 'https://avatars1.githubusercontent.com/u/32120805?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/umijs/dumi',
|
|
logo: 'https://avatars1.githubusercontent.com/u/33895495?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/umijs/umi',
|
|
logo: 'https://avatars1.githubusercontent.com/u/33895495?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/AttoJS/vue-request',
|
|
logo: 'https://raw.githubusercontent.com/AttoJS/art/master/vue-request-logo.png'
|
|
},
|
|
{
|
|
url: 'https://github.com/mui-org/material-ui',
|
|
logo: 'https://avatars2.githubusercontent.com/u/33663932?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/lijinke666/react-music-player',
|
|
logo: 'https://github.com/lijinke666/react-music-player/blob/master/assetsImg/logo.png?raw=true'
|
|
},
|
|
{
|
|
url: 'https://github.com/ant-design-blazor/ant-design-blazor',
|
|
logo: 'https://raw.githubusercontent.com/ant-design-blazor/ant-design-blazor/7dbee63648e088c73c47eada79c897bc39fc3c26/logo.svg'
|
|
},
|
|
{
|
|
url: 'https://github.com/zoo-js/zoo',
|
|
logo: 'https://avatars1.githubusercontent.com/u/70757173?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/react-component',
|
|
logo: 'https://avatars3.githubusercontent.com/u/9441414?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/ant-design/pro-components',
|
|
logo: 'https://avatars1.githubusercontent.com/u/12101536?s=200&v=4'
|
|
},
|
|
{
|
|
url: 'https://github.com/prettier/prettier',
|
|
logo: 'https://github.com/prettier/prettier-logo/blob/master/images/prettier-icon-light.png?raw=true',
|
|
},
|
|
{
|
|
url: 'https://github.com/vuejs/jsx-next',
|
|
logo: 'https://avatars.githubusercontent.com/u/6128107?s=200&v=4',
|
|
},
|
|
{
|
|
url: 'https://github.com/vitejs/vite',
|
|
logo: 'https://avatars.githubusercontent.com/u/65625612?s=200&v=4',
|
|
},
|
|
{
|
|
url: 'https://github.com/jdf2e/nutui',
|
|
logo: 'https://img14.360buyimg.com/imagetools/jfs/t1/167902/2/8762/791358/603742d7E9b4275e3/e09d8f9a8bf4c0ef.png',
|
|
},
|
|
{
|
|
width: 'auto',
|
|
url: 'https://github.com/alibaba/formily',
|
|
logo: 'https://img.alicdn.com/imgextra/i2/O1CN01Kq3OHU1fph6LGqjIz_!!6000000004056-55-tps-1141-150.svg',
|
|
},
|
|
{
|
|
url: 'https://github.com/vuepress/vuepress-next',
|
|
logo: 'https://v2.vuepress.vuejs.org/images/hero.png',
|
|
},
|
|
];
|
|
|
|
// **************************************************************************
|
|
module.exports = {
|
|
users
|
|
};
|
|
|
|
// **************************************************************************
|