Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Mar 30, 2023
1 parent cae43f0 commit 652ac28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/compiler-sfc/src/compileScript.ts
Expand Up @@ -68,7 +68,7 @@ const DEFINE_EMITS = 'defineEmits'
const DEFINE_EXPOSE = 'defineExpose'
const WITH_DEFAULTS = 'withDefaults'
const DEFINE_OPTIONS = 'defineOptions'
const DEFINT_SLOTS = 'defineSlots'
const DEFINE_SLOTS = 'defineSlots'

// constants
const DEFAULT_VAR = `__default__`
Expand Down Expand Up @@ -596,11 +596,11 @@ export function compileScript(
}

function processDefineSlots(node: Node, declId?: LVal): boolean {
if (!isCallOf(node, DEFINT_SLOTS)) {
if (!isCallOf(node, DEFINE_SLOTS)) {
return false
}
if (hasDefineSlotsCall) {
error(`duplicate ${DEFINT_SLOTS}() call`, node)
error(`duplicate ${DEFINE_SLOTS}() call`, node)
}
hasDefineSlotsCall = true

Expand Down
1 change: 1 addition & 0 deletions packages/runtime-core/src/index.ts
Expand Up @@ -69,6 +69,7 @@ export {
defineEmits,
defineExpose,
defineOptions,
defineSlots,
withDefaults,
// internal
mergeDefaults,
Expand Down

0 comments on commit 652ac28

Please sign in to comment.