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.

95e3efd3b5ac3e5970695e21270fa67b37e456f9.svn-base 250B

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