Closed gaby64 closed 4 years ago
A bit more explanation would be useful in the issue.
I came to this because using ES modules import
and export default
does not work, within The .vue
script section, and I would like them to, while loading with httpVueLoader. Is this the problem you are suggesting a solution to?
Do you have a code base I could check that exhibits this solution? I'm interested in the larger setup.
What I really am looking for is a way to code .vue
normally, yet have httpVueLoader read this in. Has anyone worked on this, i.e. a branch of the code that is ES module compatible?
Have you seen #84 - looks like a duplicate, but with async
/await
syntax.
that is what my code above does
the key bit is to chain your imports in a Promise.all and resolve that promise with your component object. I show library imports and a component import. I have examples for using this in routes aswell, but I would need to get on my work computer to find it. Altho I have ceased developement this way as webpack offers many optimizations that cannot be done this way.
module.exports = Promise.all([import("./vue.esm.browser"), import("./vuex.esm.browser"), import("./vee-validate.full.esm"), httpVueLoader('./components/NavBar.vue')]).then(([mVue, mVuex, mVee, NavBar]) => {
module.exports replaces export default as this is what httpVueLoader understands.
module.exports = {
name: "NavBar",
props:{
route: String
}
}
Thanks your way helps me a lot
Here is the solution I found for using imports within .vue files, through http-vue-loader The biggest issue is that HTML case is lost, so use kebab case in html. Also, html tags require closing tags.
main.js
App.vue
NavBar.vue