Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 11x 11x 77x 85x 85x 85x 1x 85x 85x 8x 85x 85x 3x 82x 11x 11x 11x 11x 11x 1x 1x 1x 11x 11x 11x 11x 11x 11x 21x 21x 21x 1x 20x 8x 3x 5x 20x 20x 20x 20x 20x 27x 27x 20x 20x 20x 20x 20x 20x 20x 20x 11x 11x 1x 1x 11x 1x 1x 11x 1x 1x 11x 3x 1x 1x 2x 11x 11x 5x 5x 11x 11x 84x 489x 489x 489x 401x 88x 88x 88x 88x 489x 489x 3x 3x 2x 1x 1x 1x 88x 88x 440x 88x 88x 621x 533x 533x 533x 533x 2x 3x 88x 88x 96x 96x 96x 96x 96x 96x 101x 5x 5x 5x 96x 5x 88x 88x 85x 85x 85x 85x 85x 85x 85x 24x 85x 85x 85x 85x 64x 64x 64x 64x 64x 64x 64x 3x 3x 1x 1x 1x 1x 3x 3x 3x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 85x 1x 1x 1x 1x 1x 85x 84x 84x 5x 2x 2x 1x 7x 1x 1x 1x 1x 5x 5x 2x 2x 3x 3x 6x 6x 14x 14x 4x 4x | import { isReactive, reactive, track, TrackOpTypes, trigger, TriggerOpTypes } from '@vue/reactivity' import { isFunction, extend, NOOP, isArray, isObject, isString, invokeArrayFns } from '@vue/shared' import { warn } from '../warning' import { cloneVNode, createVNode } from '../vnode' import { RootRenderFunction } from '../renderer' import { App, AppConfig, AppContext, CreateAppFunction, Plugin } from '../apiCreateApp' import { Component, ComponentOptions, createComponentInstance, finishComponentSetup, isRuntimeOnly, setupComponent } from '../component' import { RenderFunction, mergeOptions, internalOptionMergeStrats } from '../componentOptions' import { ComponentPublicInstance } from '../componentPublicInstance' import { devtoolsInitApp, devtoolsUnmountApp } from '../devtools' import { Directive } from '../directives' import { nextTick } from '../scheduler' import { version } from '..' import { installLegacyConfigWarnings, installLegacyOptionMergeStrats, LegacyConfig } from './globalConfig' import { LegacyDirective } from './customDirective' import { warnDeprecation, DeprecationTypes, assertCompatEnabled, configureCompat, isCompatEnabled, softAssertCompatEnabled } from './compatConfig' import { LegacyPublicInstance } from './instance' /** * @deprecated the default `Vue` export has been removed in Vue 3. The type for * the default export is provided only for migration purposes. Please use * named imports instead - e.g. `import { createApp } from 'vue'`. */ export type CompatVue = Pick<App, 'version' | 'component' | 'directive'> & { configureCompat: typeof configureCompat // no inference here since these types are not meant for actual use - they // are merely here to provide type checks for internal implementation and // information for migration. new (options?: ComponentOptions): LegacyPublicInstance version: string config: AppConfig & LegacyConfig nextTick: typeof nextTick use(plugin: Plugin, ...options: any[]): CompatVue mixin(mixin: ComponentOptions): CompatVue component(name: string): Component | undefined component(name: string, component: Component): CompatVue directive(name: string): Directive | undefined directive(name: string, directive: Directive): CompatVue compile(template: string): RenderFunction /** * @deprecated Vue 3 no longer supports extending constructors. */ extend: (options?: ComponentOptions) => CompatVue /** * @deprecated Vue 3 no longer needs set() for adding new properties. */ set(target: any, key: string | number | symbol, value: any): void /** * @deprecated Vue 3 no longer needs delete() for property deletions. */ delete(target: any, key: string | number | symbol): void /** * @deprecated use `reactive` instead. */ observable: typeof reactive /** * @deprecated filters have been removed from Vue 3. */ filter(name: string, arg?: any): null /** * @internal */ cid: number /** * @internal */ options: ComponentOptions /** * @internal */ util: any /** * @internal */ super: CompatVue } export let isCopyingConfig = false // exported only for test export let singletonApp: App let singletonCtor: CompatVue // Legacy global Vue constructor export function createCompatVue( createApp: CreateAppFunction<Element>, createSingletonApp: CreateAppFunction<Element> ): CompatVue { singletonApp = createSingletonApp({}) const Vue: CompatVue = (singletonCtor = function Vue( options: ComponentOptions = {} ) { return createCompatApp(options, Vue) } as any) function createCompatApp(options: ComponentOptions = {}, Ctor: any) { assertCompatEnabled(DeprecationTypes.GLOBAL_MOUNT, null) const { data } = options if ( data && !isFunction(data) && softAssertCompatEnabled(DeprecationTypes.OPTIONS_DATA_FN, null) ) { options.data = () => data } const app = createApp(options) if (Ctor !== Vue) { applySingletonPrototype(app, Ctor) } const vm = app._createRoot!(options) if (options.el) { return (vm as any).$mount(options.el) } else { return vm } } Vue.version = `2.6.14-compat:${__VERSION__}` Vue.config = singletonApp.config Vue.use = (p, ...options) => { if (p && isFunction(p.install)) { p.install(Vue as any, ...options) } else Iif (isFunction(p)) { p(Vue as any, ...options) } return Vue } Vue.mixin = m => { singletonApp.mixin(m) return Vue } Vue.component = ((name: string, comp: Component) => { if (comp) { singletonApp.component(name, comp) return Vue } else E{ return singletonApp.component(name) } }) as any Vue.directive = ((name: string, dir: Directive | LegacyDirective) => { if (dir) { singletonApp.directive(name, dir as Directive) return Vue } else { return singletonApp.directive(name) } }) as any Vue.options = { _base: Vue } let cid = 1 Vue.cid = cid Vue.nextTick = nextTick const extendCache = new WeakMap() function extendCtor(this: any, extendOptions: ComponentOptions = {}) { assertCompatEnabled(DeprecationTypes.GLOBAL_EXTEND, null) Iif (isFunction(extendOptions)) { extendOptions = extendOptions.options } if (extendCache.has(extendOptions)) { return extendCache.get(extendOptions) } const Super = this function SubVue(inlineOptions?: ComponentOptions) { if (!inlineOptions) { return createCompatApp(SubVue.options, SubVue) } else { return createCompatApp( mergeOptions( extend({}, SubVue.options), inlineOptions, internalOptionMergeStrats as any ), SubVue ) } } SubVue.super = Super SubVue.prototype = Object.create(Vue.prototype) SubVue.prototype.constructor = SubVue // clone non-primitive base option values for edge case of mutating // extended options const mergeBase: any = {} for (const key in Super.options) { const superValue = Super.options[key] mergeBase[key] = isArray(superValue) ? superValue.slice() : isObject(superValue) ? extend(Object.create(null), superValue) : superValue } SubVue.options = mergeOptions( mergeBase, extendOptions, internalOptionMergeStrats as any ) SubVue.options._base = SubVue SubVue.extend = extendCtor.bind(SubVue) SubVue.mixin = Super.mixin SubVue.use = Super.use SubVue.cid = ++cid extendCache.set(extendOptions, SubVue) return SubVue } Vue.extend = extendCtor.bind(Vue) as any Vue.set = (target, key, value) => { assertCompatEnabled(DeprecationTypes.GLOBAL_SET, null) target[key] = value } Vue.delete = (target, key) => { assertCompatEnabled(DeprecationTypes.GLOBAL_DELETE, null) delete target[key] } Vue.observable = (target: any) => { assertCompatEnabled(DeprecationTypes.GLOBAL_OBSERVABLE, null) return reactive(target) } Vue.filter = ((name: string, filter?: any) => { if (filter) { singletonApp.filter!(name, filter) return Vue } else { return singletonApp.filter!(name) } }) as any // internal utils - these are technically internal but some plugins use it. const util = { warn: __DEV__ ? warn : NOOP, extend, mergeOptions: (parent: any, child: any, vm?: ComponentPublicInstance) => mergeOptions( parent, child, vm ? undefined : (internalOptionMergeStrats as any) ), defineReactive } Object.defineProperty(Vue, 'util', { get() { assertCompatEnabled(DeprecationTypes.GLOBAL_PRIVATE_UTIL, null) return util } }) Vue.configureCompat = configureCompat return Vue } export function installAppCompatProperties( app: App, context: AppContext, render: RootRenderFunction ) { installFilterMethod(app, context) installLegacyOptionMergeStrats(app.config) if (!singletonApp) { // this is the call of creating the singleton itself so the rest is // unnecessary return } installCompatMount(app, context, render) installLegacyAPIs(app) applySingletonAppMutations(app) if (__DEV__) installLegacyConfigWarnings(app.config) } function installFilterMethod(app: App, context: AppContext) { context.filters = {} app.filter = (name: string, filter?: Function): any => { assertCompatEnabled(DeprecationTypes.FILTERS, null) if (!filter) { return context.filters![name] } Iif (__DEV__ && context.filters![name]) { warn(`Filter "${name}" has already been registered.`) } context.filters![name] = filter return app } } function installLegacyAPIs(app: App) { // expose global API on app instance for legacy plugins Object.defineProperties(app, { // so that app.use() can work with legacy plugins that extend prototypes prototype: { get() { __DEV__ && warnDeprecation(DeprecationTypes.GLOBAL_PROTOTYPE, null) return app.config.globalProperties } }, nextTick: { value: nextTick }, extend: { value: singletonCtor.extend }, set: { value: singletonCtor.set }, delete: { value: singletonCtor.delete }, observable: { value: singletonCtor.observable }, util: { get() { return singletonCtor.util } } }) } function applySingletonAppMutations(app: App) { // copy over asset registries and deopt flag ;['mixins', 'components', 'directives', 'filters', 'deopt'].forEach(key => { // @ts-ignore app._context[key] = singletonApp._context[key] }) // copy over global config mutations isCopyingConfig = true for (const key in singletonApp.config) { if (key === 'isNativeTag') continue Iif ( isRuntimeOnly() && (key === 'isCustomElement' || key === 'compilerOptions') ) { continue } const val = singletonApp.config[key as keyof AppConfig] // @ts-ignore app.config[key] = val // compat for runtime ignoredElements -> isCustomElement if ( key === 'ignoredElements' && isCompatEnabled(DeprecationTypes.CONFIG_IGNORED_ELEMENTS, null) && !isRuntimeOnly() && isArray(val) ) { app.config.compilerOptions.isCustomElement = tag => { return val.some(v => (isString(v) ? v === tag : v.test(tag))) } } } isCopyingConfig = false applySingletonPrototype(app, singletonCtor) } function applySingletonPrototype(app: App, Ctor: Function) { // copy prototype augmentations as config.globalProperties const enabled = isCompatEnabled(DeprecationTypes.GLOBAL_PROTOTYPE, null) if (enabled) { app.config.globalProperties = Object.create(Ctor.prototype) } let hasPrototypeAugmentations = false const descriptors = Object.getOwnPropertyDescriptors(Ctor.prototype) for (const key in descriptors) { if (key !== 'constructor') { hasPrototypeAugmentations = true if (enabled) { Object.defineProperty( app.config.globalProperties, key, descriptors[key] ) } } } if (__DEV__ && hasPrototypeAugmentations) { warnDeprecation(DeprecationTypes.GLOBAL_PROTOTYPE, null) } } function installCompatMount( app: App, context: AppContext, render: RootRenderFunction ) { let isMounted = false /** * Vue 2 supports the behavior of creating a component instance but not * mounting it, which is no longer possible in Vue 3 - this internal * function simulates that behavior. */ app._createRoot = options => { const component = app._component const vnode = createVNode(component, options.propsData || null) vnode.appContext = context const hasNoRender = !isFunction(component) && !component.render && !component.template const emptyRender = () => {} // create root instance const instance = createComponentInstance(vnode, null, null) // suppress "missing render fn" warning since it can't be determined // until $mount is called if (hasNoRender) { instance.render = emptyRender } setupComponent(instance) vnode.component = instance vnode.isCompatRoot = true // $mount & $destroy // these are defined on ctx and picked up by the $mount/$destroy // public property getters on the instance proxy. // Note: the following assumes DOM environment since the compat build // only targets web. It essentially includes logic for app.mount from // both runtime-core AND runtime-dom. instance.ctx._compat_mount = (selectorOrEl?: string | Element) => { Iif (isMounted) { __DEV__ && warn(`Root instance is already mounted.`) return } let container: Element Iif (typeof selectorOrEl === 'string') { // eslint-disable-next-line const result = document.querySelector(selectorOrEl) Iif (!result) { __DEV__ && warn( `Failed to mount root instance: selector "${selectorOrEl}" returned null.` ) return } container = result } else { // eslint-disable-next-line container = selectorOrEl || document.createElement('div') } const isSVG = container instanceof SVGElement // HMR root reload if (__DEV__) { context.reload = () => { const cloned = cloneVNode(vnode) // compat mode will use instance if not reset to null cloned.component = null render(cloned, container, isSVG) } } // resolve in-DOM template if component did not provide render // and no setup/mixin render functions are provided (by checking // that the instance is still using the placeholder render fn) if (hasNoRender && instance.render === emptyRender) { // root directives check if (__DEV__) { for (let i = 0; i < container.attributes.length; i++) { const attr = container.attributes[i] if (attr.name !== 'v-cloak' && /^(v-|:|@)/.test(attr.name)) { warnDeprecation(DeprecationTypes.GLOBAL_MOUNT_CONTAINER, null) break } } } instance.render = null ;(component as ComponentOptions).template = container.innerHTML finishComponentSetup(instance, false, true /* skip options */) } // clear content before mounting container.innerHTML = '' // TODO hydration render(vnode, container, isSVG) if (container instanceof Element) { container.removeAttribute('v-cloak') container.setAttribute('data-v-app', '') } isMounted = true app._container = container // for devtools and telemetry ;(container as any).__vue_app__ = app if (__DEV__ || __FEATURE_PROD_DEVTOOLS__) { devtoolsInitApp(app, version) } return instance.proxy! } instance.ctx._compat_destroy = () => { if (isMounted) { render(null, app._container) if (__DEV__ || __FEATURE_PROD_DEVTOOLS__) { devtoolsUnmountApp(app) } delete app._container.__vue_app__ } else E{ const { bum, scope, um } = instance // beforeDestroy hooks Iif (bum) { invokeArrayFns(bum) } Iif (isCompatEnabled(DeprecationTypes.INSTANCE_EVENT_HOOKS, instance)) { instance.emit('hook:beforeDestroy') } // stop effects Iif (scope) { scope.stop() } // unmounted hook Iif (um) { invokeArrayFns(um) } Iif (isCompatEnabled(DeprecationTypes.INSTANCE_EVENT_HOOKS, instance)) { instance.emit('hook:destroyed') } } } return instance.proxy! } } const methodsToPatch = [ 'push', 'pop', 'shift', 'unshift', 'splice', 'sort', 'reverse' ] const patched = new WeakSet<object>() function defineReactive(obj: any, key: string, val: any) { // it's possible for the original object to be mutated after being defined // and expecting reactivity... we are covering it here because this seems to // be a bit more common. if (isObject(val) && !isReactive(val) && !patched.has(val)) { const reactiveVal = reactive(val) if (isArray(val)) { methodsToPatch.forEach(m => { // @ts-ignore val[m] = (...args: any[]) => { // @ts-ignore Array.prototype[m].call(reactiveVal, ...args) } }) } else { Object.keys(val).forEach(key => { try { defineReactiveSimple(val, key, val[key]) } catch (e: any) {} }) } } const i = obj.$ if (i && obj === i.proxy) { // target is a Vue instance - define on instance.ctx defineReactiveSimple(i.ctx, key, val) i.accessCache = Object.create(null) } else Iif (isReactive(obj)) { obj[key] = val } else { defineReactiveSimple(obj, key, val) } } function defineReactiveSimple(obj: any, key: string, val: any) { val = isObject(val) ? reactive(val) : val Object.defineProperty(obj, key, { enumerable: true, configurable: true, get() { track(obj, TrackOpTypes.GET, key) return val }, set(newVal) { val = isObject(newVal) ? reactive(newVal) : newVal trigger(obj, TriggerOpTypes.SET, key, newVal) } }) } |