wip: remove config.silent

This commit is contained in:
Evan You 2019-09-03 20:17:25 -04:00
parent 406dcb0a7a
commit 40d33a3973
2 changed files with 1 additions and 3 deletions

View File

@ -31,7 +31,6 @@ export interface App {
}
export interface AppConfig {
silent: boolean
devtools: boolean
performance: boolean
errorHandler?: (
@ -65,7 +64,6 @@ export type Plugin =
export function createAppContext(): AppContext {
return {
config: {
silent: false,
devtools: true,
performance: false,
errorHandler: undefined,

View File

@ -1,6 +1,6 @@
import { VNode } from './vnode'
import { Data, ComponentInstance } from './component'
import { isString } from '@vue/shared'
import { isString, EMPTY_OBJ } from '@vue/shared'
import { toRaw } from '@vue/reactivity'
let stack: VNode[] = []