Skip to content

Commit 0159af9

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

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-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-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
} from './componentEmits'
2020
import { type InternalSlots, type Slots, initSlots } from './componentSlots'
2121
import { VaporLifecycleHooks } from './apiLifecycle'
22+
2223
import type { Data } from '@vue/shared'
2324

2425
export type Component = FunctionalComponent | ObjectComponent
@@ -166,7 +167,6 @@ export function createComponentInstance(
166167

167168
// state
168169
setupState: EMPTY_OBJ,
169-
170170
props: EMPTY_OBJ,
171171
emit: null!,
172172
emitted: 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)