http-vue-loader icon indicating copy to clipboard operation
http-vue-loader copied to clipboard

Does this tool load synchronously?

Open wysisoft opened this issue 5 years ago • 1 comments

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?

wysisoft avatar Mar 23 '19 19:03 wysisoft

No, Asynchronously!

givingwu avatar Aug 22 '19 02:08 givingwu