Home / File/ app.js — vue Source File

app.js — vue Source File

Architecture documentation for app.js, a javascript file in the vue codebase. 1 imports, 0 dependents.

File javascript VueCore 1 imports

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

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

export default context => {
  return new Promise(resolve => {
    context.msg = 'hello'
    resolve(
      new Vue({
        render(h) {
          return h('div', context.url)
        }
      })
    )
  })
}

Domain

Dependencies

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

Frequently Asked Questions

What does app.js do?
app.js is a source file in the vue codebase, written in javascript. It belongs to the VueCore domain.
What does app.js depend on?
app.js imports 1 module(s): ../../../../dist/vue.runtime.common.js.
Where is app.js in the architecture?
app.js is located at packages/server-renderer/test/fixtures/app.js (domain: VueCore, 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