fix: utils

This commit is contained in:
chenjiahan 2020-07-07 15:06:16 +08:00
parent 0024a2db42
commit 4c87fe2479
6 changed files with 7 additions and 9 deletions

View File

@ -1,7 +1,7 @@
import Locale from '../../src-next/locale'; import Locale from '../../src-next/locale';
import enUS from '../../src-next/locale/lang/en-US'; import enUS from '../../src-next/locale/lang/en-US';
import { get } from '../../src/utils'; import { get } from '../../src-next/utils';
import { camelize } from '../../src/utils/format/string'; import { camelize } from '../../src-next/utils/format/string';
// import Lazyload from '../../src/lazyload'; // import Lazyload from '../../src/lazyload';
const { app } = window; const { app } = window;

View File

@ -1,4 +1,4 @@
import { on, off } from '../../src/utils/dom/event'; import { on, off } from '../utils/dom/event';
import { import {
Ref, Ref,
watch, watch,

View File

@ -83,7 +83,7 @@
<script> <script>
import icons from '@vant/icons'; import icons from '@vant/icons';
import { BLUE, GREEN } from '../../../src/utils/constant'; import { BLUE, GREEN } from '../../utils/constant';
// from https://30secondsofcode.org // from https://30secondsofcode.org
function copyToClipboard(str) { function copyToClipboard(str) {

View File

@ -1,6 +1,5 @@
// Utils // Utils
import { addUnit } from '../../src/utils'; import { addUnit, createNamespace } from '../utils';
import { createNamespace } from '../utils/create';
// Components // Components
import Info from '../info'; import Info from '../info';

View File

@ -1,6 +1,5 @@
// Utils // Utils
import { isDef } from '../../src/utils'; import { isDef, createNamespace } from '../utils';
import { createNamespace } from '../utils/create';
const [createComponent, bem] = createNamespace('info'); const [createComponent, bem] = createNamespace('info');

View File

@ -1,5 +1,5 @@
import { ref } from 'vue'; import { ref } from 'vue';
import { deepAssign } from '../../src/utils/deep-assign'; import { deepAssign } from '../utils/deep-assign';
import defaultMessages from './lang/zh-CN'; import defaultMessages from './lang/zh-CN';
type Messages = Record<string, Record<string, any>>; type Messages = Record<string, Record<string, any>>;