Home / File/ cache-opt-out.js — vue Source File

cache-opt-out.js — vue Source File

Architecture documentation for cache-opt-out.js, a javascript file in the vue codebase. 1 imports, 0 dependents.

File javascript VueCore VDom 1 imports 2 functions

Entity Profile

Dependency Diagram

graph LR
  c79f8b93_6f05_375e_aa12_82229aa2ef09["cache-opt-out.js"]
  95f0fc43_06e0_3922_f935_20c1b9d16775["../../../../dist/vue.runtime.common.js"]
  c79f8b93_6f05_375e_aa12_82229aa2ef09 --> 95f0fc43_06e0_3922_f935_20c1b9d16775
  style c79f8b93_6f05_375e_aa12_82229aa2ef09 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import Vue from '../../../../dist/vue.runtime.common.js'

const app = {
  name: 'app',
  props: ['id'],
  serverCacheKey: props => (props.id === 1 ? false : props.id),
  render(h) {
    return h('div', '/test')
  }
}

export default () => {
  return Promise.resolve(
    new Vue({
      render: h => h(app, { props: { id: 1 } })
    })
  )
}

Domain

Subdomains

Dependencies

  • ../../../../dist/vue.runtime.common.js

Frequently Asked Questions

What does cache-opt-out.js do?
cache-opt-out.js is a source file in the vue codebase, written in javascript. It belongs to the VueCore domain, VDom subdomain.
What functions are defined in cache-opt-out.js?
cache-opt-out.js defines 2 function(s): app.render, app.serverCacheKey.
What does cache-opt-out.js depend on?
cache-opt-out.js imports 1 module(s): ../../../../dist/vue.runtime.common.js.
Where is cache-opt-out.js in the architecture?
cache-opt-out.js is located at packages/server-renderer/test/fixtures/cache-opt-out.js (domain: VueCore, subdomain: VDom, directory: packages/server-renderer/test/fixtures).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free