app.js — vue Source File
Architecture documentation for app.js, a javascript file in the vue codebase.
Entity Profile
Relationship Graph
Source Code
var app = new Vue({
el: '#app',
data: {
databases: []
}
})
function loadSamples() {
app.databases = Object.freeze(ENV.generateData().toArray());
Monitoring.renderRate.ping();
setTimeout(loadSamples, ENV.timeout);
}
loadSamples()
Domain
Subdomains
Functions
Source
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, VDom subdomain.
What functions are defined in app.js?
app.js defines 1 function(s): loadSamples.
Where is app.js in the architecture?
app.js is located at benchmarks/dbmon/app.js (domain: VueCore, subdomain: VDom, directory: benchmarks/dbmon).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free