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
The frontend Vue editor compiles a single file vue component and then renders it on the page using vue3-sfc-loader and vue's createApp among some other libraries. This is good for preview and demo purposes, but since the code ends up as a usable vue component in a packaged library, the compilation process and way of baking in requests to the pov-globe-api will have to be handled differently in order for the components to work properly on the point-of-vue platform.
This compilation process will differ slightly in a couple of ways. Most importantly, in the short term, is that imports need to be explicit: we should only add what is being used in the code.
The text was updated successfully, but these errors were encountered:
The frontend Vue editor compiles a single file vue component and then renders it on the page using vue3-sfc-loader and vue's createApp among some other libraries. This is good for preview and demo purposes, but since the code ends up as a usable vue component in a packaged library, the compilation process and way of baking in requests to the pov-globe-api will have to be handled differently in order for the components to work properly on the point-of-vue platform.
This compilation process will differ slightly in a couple of ways. Most importantly, in the short term, is that imports need to be explicit: we should only add what is being used in the code.
The text was updated successfully, but these errors were encountered: