Rap 原分销系统代码Web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
258B

  1. const req = require.context('../../../assets/icons/svg', false, /\.svg$/)
  2. const requireAll = requireContext => requireContext.keys()
  3. const re = /\.\/(.*)\.svg/
  4. const svgIcons = requireAll(req).map(i => {
  5. return i.match(re)[1]
  6. })
  7. export default svgIcons