http-vue-loader
http-vue-loader copied to clipboard
Does this tool load synchronously?
console.log(1)
new Vue({
el: "#vueDiv",
components: {
"property-component": window.httpVueLoader(
"https://something.vue" (logs 2 to console)
)
},
mounted:function(){
console.log(3)
}
})
will the console read 1,2,3 or 1,3,2 due to asynchronous loading?
No, Asynchronously!