refactor: remove experimental hooks

This commit is contained in:
Evan You
2019-02-26 18:10:08 -05:00
parent 77dae71062
commit 2f165c1e87
8 changed files with 3 additions and 362 deletions

View File

@@ -45,7 +45,6 @@ interface PublicInstanceMethods {
export interface APIMethods<P = {}, D = {}> {
data(): Partial<D>
hooks(): any
render(props: Readonly<P>, slots: Slots, attrs: Data, parentVNode: VNode): any
}
@@ -136,7 +135,6 @@ class InternalComponent implements PublicInstanceMethods {
_queueJob: ((fn: () => void) => void) | null = null
_isVue: boolean = true
_inactiveRoot: boolean = false
_hookProps: any = null
constructor(props?: object) {
if (props === void 0) {