Commit b428828fbeb48f12a2d163e93ddeb024979c1cce

Authored by Graham Fairweather
1 parent 0fce118e

Use contant for CSS prefixes

Composed string that can be used within iview and by users of the library.
Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
src/components/select/prefixCls.js 0 → 100644
  1 +import {
  2 + IVU,
  3 + SELECT,
  4 +} from '@/utils/constants';
  5 +import {
  6 + kebabJoin,
  7 +} from '@/utils/assist';
  8 +
  9 +export default kebabJoin(IVU, SELECT);
... ...