chore: use '@vue/shared' instead of '@vue/shared/src' (#1915)

This commit is contained in:
XRenSiu 2020-08-22 00:50:06 +08:00 committed by GitHub
parent f02e2f99d9
commit bb54a84cd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ import {
} from '../utils'
import { CREATE_SLOTS, RENDER_LIST, WITH_CTX } from '../runtimeHelpers'
import { parseForExpression, createForLoopParams } from './vFor'
import { SlotFlags } from '@vue/shared/src'
import { SlotFlags } from '@vue/shared'
const defaultFallback = createSimpleExpression(`undefined`, false)

View File

@ -1,4 +1,4 @@
import { NodeTransform, NodeTypes, ElementTypes } from '@vue/compiler-core/src'
import { NodeTransform, NodeTypes, ElementTypes } from '@vue/compiler-core'
import { DOMErrorCodes, createDOMCompilerError } from '../errors'
export const ignoreSideEffectTags: NodeTransform = (node, context) => {

View File

@ -8,7 +8,7 @@ import {
Fragment,
unref
} from '@vue/runtime-core'
import { ShapeFlags } from '@vue/shared/src'
import { ShapeFlags } from '@vue/shared'
export function useCssVars(
getter: (ctx: ComponentPublicInstance) => Record<string, string>,