Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions src/mount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ import {
ComponentOptionsBase,
ComponentPropsOptions,
AppConfig,
VNodeProps
VNodeProps,
ComponentOptionsMixin
} from 'vue'

import { config } from './config'
Expand All @@ -34,17 +35,6 @@ import {
} from './constants'
import { stubComponents } from './stubs'

// TODO remove when https://github.com/vuejs/vue-next/pull/1361 is merged
type ComponentOptionsMixin = ComponentOptionsBase<
any,
any,
any,
any,
any,
any,
any,
any
>
type Slot = VNode | string | { render: Function } | Function

type SlotDictionary = {
Expand Down