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
either loads app = FirstScreen or app = Desktopsee here
then render app in canvas (of index.html)
Here we've to find a way to render/mount Vue Component instead enyo here.
FirstScreen component
You have to explain how your methods will be implemented to use data coming from server
All the variable in app.js are globally available to use. all these which will get loaded and initiallized in app.js to use everywhere
like in firstscreen.js we're using at line 81. (myserver)
in homeview.js using at line 126, 242. (myserver & activities)
So using all these global objects we can easily communicate with server via their methods like in homeview we got favourite activities list at line 242.
now we can communicate with server using these object methods
About components just replace enyo part
Make template to define structure.
Use pre-build vue components like icon and stuff.
props
how enyo passing props ?
see line 29 homeview in componets[] we're passing props like size, ontap, etc
For Vue just pass the same appropriate props to sub-components.
methods
Try reusing all enyo methods in vue methods
the methods which uses enyo "components" like
78 firstscreen we're using this.$.server.setValue(..)Not work in Vue
So the appropriate components like SugarServer and method like setValue has to be implemented.
This is what i understood, still starting implementing screen will test that this works or not!
also idk this is actually what llaske requires us to do!
In your Proposal:
firstscreen implementation:
How sugarizer starts?
js/loader.js) whichapp = FirstScreenorapp = Desktopsee hereFirstScreen component
You have to explain how your methods will be implemented to use data coming from server
All the variable in app.js are globally available to use. all these which will get loaded and initiallized in app.js to use everywhere
like in firstscreen.js we're using at line 81. (myserver)
in homeview.js using at line 126, 242. (myserver & activities)
So using all these global objects we can easily communicate with server via their methods like in homeview we got favourite activities list at line 242.
now we can communicate with server using these object methods
About components just replace enyo part
Make template to define structure.
Use pre-build vue components like icon and stuff.
props
how enyo passing props ?
methods
Try reusing all enyo methods in vue methods
the methods which uses enyo "components" like
78 firstscreen we're using
this.$.server.setValue(..)Not work in VueSo the appropriate components like
SugarServerand method likesetValuehas to be implemented.This is what i understood, still starting implementing screen will test that this works or not!
also idk this is actually what llaske requires us to do!