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
module MyAppModule
@app MyApp beginendui() ="Hello World"@page("/", ui, app = MyApp)
endup()
# at this point the app loads correctlyimport.MyAppModule.MyApp
# at this point the app doesn't load anymore
The reason is that after importing the mount point's name is no longer prefixed by the module name, so the following error is displayed in the browser's console
Failed to mount app: mount target selector "#Main_MyAppModule_MyApp" returned null.
Instead, the name MyApp references the correct div.
The text was updated successfully, but these errors were encountered:
The reason is that after importing the mount point's name is no longer prefixed by the module name, so the following error is displayed in the browser's console
Instead, the name
MyApp
references the correct div.The text was updated successfully, but these errors were encountered: