wip: remove config.silent
This commit is contained in:
parent
406dcb0a7a
commit
40d33a3973
@ -31,7 +31,6 @@ export interface App {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface AppConfig {
|
export interface AppConfig {
|
||||||
silent: boolean
|
|
||||||
devtools: boolean
|
devtools: boolean
|
||||||
performance: boolean
|
performance: boolean
|
||||||
errorHandler?: (
|
errorHandler?: (
|
||||||
@ -65,7 +64,6 @@ export type Plugin =
|
|||||||
export function createAppContext(): AppContext {
|
export function createAppContext(): AppContext {
|
||||||
return {
|
return {
|
||||||
config: {
|
config: {
|
||||||
silent: false,
|
|
||||||
devtools: true,
|
devtools: true,
|
||||||
performance: false,
|
performance: false,
|
||||||
errorHandler: undefined,
|
errorHandler: undefined,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { VNode } from './vnode'
|
import { VNode } from './vnode'
|
||||||
import { Data, ComponentInstance } from './component'
|
import { Data, ComponentInstance } from './component'
|
||||||
import { isString } from '@vue/shared'
|
import { isString, EMPTY_OBJ } from '@vue/shared'
|
||||||
import { toRaw } from '@vue/reactivity'
|
import { toRaw } from '@vue/reactivity'
|
||||||
|
|
||||||
let stack: VNode[] = []
|
let stack: VNode[] = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user