chore: fix file naming

This commit is contained in:
chenjiahan 2020-03-21 14:20:30 +08:00
parent a8c671ecfd
commit 494ea8984c
10 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
import AddressEdit from '..';
import areaList from '../../area/demo/area.simple';
import areaList from '../../area/demo/area-simple';
import { mount, later } from '../../../test';
const addressInfo = {

View File

@ -1,5 +1,5 @@
import Area from '..';
import areaList from '../demo/area.simple';
import areaList from '../demo/area-simple';
import { mount, later, triggerDrag } from '../../../test';
const firstOption = [

View File

@ -18,7 +18,7 @@ import {
getSelectedSkuValues,
getSelectedPropValues,
getSelectedProperties,
} from './utils/skuHelper';
} from './utils/sku-helper';
import { LIMIT_TYPE, UNSELECTED_SKU_VALUE_ID } from './constants';
const namespace = createNamespace('sku');

View File

@ -1,5 +1,5 @@
import { createNamespace } from '../../utils';
import { isSkuChoosable } from '../utils/skuHelper';
import { isSkuChoosable } from '../utils/sku-helper';
const [createComponent] = createNamespace('sku-row-item');

View File

@ -1,7 +1,7 @@
// Utils
import lang from './lang';
import constants from './constants';
import skuHelper from './utils/skuHelper';
import skuHelper from './utils/sku-helper';
// Components
import Sku from './Sku';

View File

@ -47,8 +47,8 @@
</template>
<script>
import { zhCNData } from './data.zh-CN';
import { enUSData } from './data.en-US';
import { zhCNData } from './data-zh';
import { enUSData } from './data-en';
import { deepClone } from '../../utils/deep-clone';
export default {