Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 68114ef

Browse files
committedMar 17, 2024·
chore: remove unnecessary diffs
1 parent ab91662 commit 68114ef

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed
 

‎packages/runtime-vapor/__tests__/componentSlots.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import {
44
createComponent,
5+
createSlots,
56
createVaporApp,
67
defineComponent,
78
getCurrentInstance,
89
nextTick,
910
ref,
1011
template,
1112
} from '../src'
12-
import { createSlots } from '../src/apiCreateSlots'
1313
import { makeRender } from './_utils'
1414

1515
const define = makeRender<any>()

‎packages/runtime-vapor/src/component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export interface ComponentInternalInstance {
4848
component: FunctionalComponent | ObjectComponent
4949
comps: Set<ComponentInternalInstance>
5050
dirs: Map<Node, DirectiveBinding[]>
51-
5251
rawProps: NormalizedRawProps
5352
propsOptions: NormalizedPropsOptions
5453
emitsOptions: ObjectEmitsOptions | null

‎packages/runtime-vapor/src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ export {
100100
onErrorCaptured,
101101
// onServerPrefetch,
102102
} from './apiLifecycle'
103-
104103
export {
105104
createVaporApp,
106105
type App,

0 commit comments

Comments
 (0)
Please sign in to comment.