12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
var app = new Vue({
|
|
el : "#app",
|
|
components : {
|
|
"m-navbar": navbarComp
|
|
},
|
|
data: {},
|
|
created: async function () {
|
|
setTimeout(() => {
|
|
document.getElementById("loading-container").style.opacity = 0
|
|
}, 500)
|
|
}
|
|
}) |