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.

Entity Profile

Dependency Diagram

graph LR
  c7985b60_704e_9dc4_1c07_9c2de68356ec["app.js"]
  7c5f5ecb_33d2_94e7_83bd_fcb3042fa31a["../../../../dist/vue.runtime.common.js"]
  c7985b60_704e_9dc4_1c07_9c2de68356ec --> 7c5f5ecb_33d2_94e7_83bd_fcb3042fa31a
  style c7985b60_704e_9dc4_1c07_9c2de68356ec 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 CompilerSFC 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: CompilerSFC, 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