猫妈狗爸伴宠师小程序后端代码
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.

9 lines
288 B

7 months ago
  1. import Vue from 'vue'
  2. import SvgIcon from '@/components/SvgIcon'// svg component
  3. // register globally
  4. Vue.component('svg-icon', SvgIcon)
  5. const req = require.context('./svg', false, /\.svg$/)
  6. const requireAll = requireContext => requireContext.keys().map(requireContext)
  7. requireAll(req)