I was using eval function for dynamic loading of vue component. It was working fine in development server while runnign npm run dev. After project build (npm run build) it is not working.
this is working fine in local. Once I build the project I'm getting a error as
error ReferenceError: Frames is not defined
at eval (eval at <anonymous> (app-1fe63c09.js:41:49710), <anonymous>:1:1)
at app-1fe63c09.js:41:49710
at Array.map (<anonymous>)
at app-1fe63c09.js:41:49648
@martinbean The component name is coming from API. The component name will be in string type. So I was using eval function. But it's not working in server.