Skip to content

Instantly share code, notes, and snippets.

View kristremblay's full-sized avatar
🚀

Kris Tremblay kristremblay

🚀
  • Winnipeg, MB
View GitHub Profile
@kristremblay
kristremblay / vuejs-template-render-fn-nd.md
Last active January 8, 2019 19:56
VueJS - template or render function not defined

To fix this error, check app.js and add .default to the require statements.

Example

Vue.component('example-component', require('./components/ExampleComponent.vue').default);