You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of this line, if I have a template which includes something like {{render(data)}} I get weird errors in the console.
[Vue warn]: Error in render: "TypeError: _vm is undefined"
found in
---> <App>
<Root> vue.runtime.esm.js:56:2
TypeError: "_vm is undefined"
render http://localhost:1234/main.a1fcaaae.js:11645:7
render http://localhost:1234/main.a1fcaaae.js:11659:24
Because of this line, if I have a template which includes something like
{{render(data)}}
I get weird errors in the console.Relevant lines in the generated JS source:
As you can see, it is calling
render(_vm.data)
instead of_vm.render(_vm.data)
.The text was updated successfully, but these errors were encountered: