Leo Aquino

Results 4 comments of Leo Aquino

in one of my projects from vue-cli webpack. i encountered this bug too but only in dev. when i build it for production it's fixed.

@Malemelo, you might have some backend issues at login.dart or register.dart ``` var res = await Network().authData(data, '/login'); var body = json.decode(res.body); print(body); ``` print body so it shows you...

@comptech-developer you might have some backend issues at login.dart or register.dart ``` var res = await Network().authData(data, '/login'); var body = json.decode(res.body); print(body); ``` print body so it shows you...

Hi, i also encountered the same issue. `Cannot read property 'start' of undefined` what i did to fix this is separate VueSession and options on Vue.use. Vue.use(VueRouter, VueI18n, VueSession, Vue.use)...