react-vue-loader
react-vue-loader copied to clipboard
Webpack loader for Vue.js components
Throws following error: `Module build failed: TypeError: Cannot read property 'vue' of undefined` Probably is related to this vue-loader issue https://github.com/vuejs/vue-loader/issues/1177
Is there anything inside a Vue `` or Vue `` that won't work when loaded by this loader? Can you paste example of the output React component?
They aren't working for me. Here's an example I copied from the Vue docs: ```js Add Remove {{ item }} export default { data() { return { items: [1,2,3,4,5,6,7,8,9], nextNum:...