http-vue-loader
http-vue-loader copied to clipboard
load .vue files from your html/js
My app is working in all browsers except IE11, and as far I read (I hope I didn't skip any relevant line) it say it also work on IE11. I've...
StackBlitz doesn't have official Vue support, so developing there is a bit painful (but it's still one of the better solutions I've found). This plugin would ideally make it much...
``` 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...
Vue-Cli already installed, now I am trying to gradually get rid of node_modules with http-vue-loader (and maybe something else). (Since the project I am working on is not available to...
``` about2 import { Component, Vue } from 'vue-property-decorator'; @Component({ components: { }, }) export default class About2 extends Vue {} ``` loading error: 
Hi, I got XML Parsing Error: not well formed or XML Parsing Error: prefix not bound to a namespace in Firefox console whenever I used v-bind or v-on. How to...
Based on this example: https://github.com/vuejs/vue-router/issues/298#issuecomment-406306711 ``` // router.js import Vue from "vue"; import Router from "vue-router"; import Component from "components/component.vue"; Vue.use(Router); export default new Router({ mode: "history", routes: [ {...
Mostly a clarification/question: I had an issue here where _suddenly_ in my project I was not able to use custom components registered in the "outer" Vue environment any more, and...