mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix: utils
This commit is contained in:
parent
0024a2db42
commit
4c87fe2479
@ -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;
|
||||||
|
@ -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,
|
||||||
|
@ -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) {
|
||||||
|
@ -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';
|
||||||
|
@ -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');
|
||||||
|
|
||||||
|
@ -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>>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user