Compile a ".vue" component in browser, with JS only?

components, vue.js

Solution

In fact, it's possible with http-vue-loader :

https://github.com/FranckFreiburger/http-vue-loader

Problem

I'd like to compile ".vue" components (with contains html/js/css) into JS, but in browser side, without browserify/vuify/webpack or others ... In a better world, i'd like to include my ".vue" component into my html app, like that, withoud need of compile things, server side: ``` <script type="vuejs/component" src="myComp.vue"></script> ``` It should be possible ?! no ? (And I can't imagine that no one got this idea, or have done it already)

Original source