@rstoenescu thank you very much :). now its working.
Best posts made by Sujan Dev
-
RE: Open a modal from another problem
-
RE: Quasar upload - Get post response
uploaded: function(file,xhr){
let response = JSON.parse(xhr.response)
}
this one worked for me.
Latest posts made by Sujan Dev
-
RE: communication between src to content script BEX
@s-molinari i read your article and had to make some changes on toggleToolbar function and also in content-hooks to make it working. in content-hooks you used ( element.querySelector(’.r a h3’).innerText, ) when i inspect i found .r not valid which became “yuRUbf” so i changed it to element.querySelector(’.yuRUbf a h3’).innerText, and then its worked. you may check and update . thanks
-
RE: cordova android app - webpage not available error ( quasar v15.10 )
Its too late but i think i should share the solution
. Your development computer and mobile device should be on the same network.
-
RE: Jqeury as $ in latest quasar version
@genyded try this
new (require('webpack')).ProvidePlugin({ $: "jquery", jQuery: "jquery" })
-
RE: Unable to load json file from assets/ folder
@venkyvb try this
import stocks from 'assets/stock_symbols.json';
-
RE: Generate APK file
@Jaz @yev you need to signed the apk to install in device . otherwise you can use
quasar dev -m cordova -T android
for debug apk . which you can install in your device for testing. -
RE: Trigger a function on page load (solved)
you can call your method from created or mounted. it should work, you can use console.log() to check that function is called or not.
-
cordova android app - webpage not available error ( quasar v15.10 )
Hi,
i have developed an application in Quasar14.9 which was good. now i converted the whole app in Version15.10 and build android apk usingquasar dev -m cordova -T android
but the new version is very slow. sometime i got the errorWebpage not available
in route.js i tryied both lazy load / code split and load all layouts/pages/components into the initial bundle .
if i load all layouts/pages/components into the initial bundle the performance is better but not like version 14.9.
is there anybody who can guide me.