Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. LaurentPayot
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 105
    • Best 31
    • Groups 0

    LaurentPayot

    @LaurentPayot

    42
    Reputation
    1262
    Profile views
    105
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location Paris, France

    LaurentPayot Follow

    Best posts made by LaurentPayot

    • RE: v0.15 news

      I prefer a polished late release to a buggy early release… 😉

      posted in Announcements
      LaurentPayot
      LaurentPayot
    • RE: Dynamic Theme Options

      Interesting topic. Note that the “theme” word is misleading as Quasar use it for material or ios builds. “color scheme” would be more appropriate…

      posted in Help
      LaurentPayot
      LaurentPayot
    • Introducing npx: an npm package runner

      I moved back from yarn to npm 5.x (included in node, lock file by default, fast). npx is the icing on the cake:
      https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b

      posted in CLI
      LaurentPayot
      LaurentPayot
    • RE: Crashed components when moved to beta version

      You can create a “foo” empty project with 0.13 and another “bar” empty project with 0.14 and see the changes with a diff tool like Meld (also in Ubuntu repos). It really helped me to migrate smoothly.

      posted in Help
      LaurentPayot
      LaurentPayot
    • RE: vue-cli 3.0 and the future of quasar-cli

      @a47ae templates usage is the number one problem Vue-CLI 3 was created to solve: https://github.com/vuejs/vue-cli/issues/589

      The short list of Vue CLI 2 templates was mainly about build systems. They are now replaced by a plugin-based configuration of webpack (a little bit like the Quasar’s extendWebpack function btw, except no templates are used at all)

      posted in CLI
      LaurentPayot
      LaurentPayot
    • RE: How to change launch.json or package.json for run dev or build in VS Code for 0.15.x

      @terry Launch is for browsers. Instead why don’t you simply create a npm script in package.json, such as for instance:

      "dev": "quasar dev -m pwa",
      

      and then in vscode Task > Run Task… and chose npm: dev

      posted in Help
      LaurentPayot
      LaurentPayot
    • RE: v0.15: custom webpack config

      @leopiccionia thank you so much.

      1. you’re right for Pug, I forgot it was automatic
      2. Great! Right now I’m customizing the build.extendWebpack function of quasar.conf.js to add loaders to my Vue single component files. I guess the documentation will talk about that.

      I’m feeling better now…

      posted in Starter Kits
      LaurentPayot
      LaurentPayot
    • RE: Quasar v0.9.1 is out!

      🎉 testing it right now!

      posted in Announcements
      LaurentPayot
      LaurentPayot
    • RE: first Official Vue.js Conference

      Next one in London: http://vuejs.london/

      posted in Hangout
      LaurentPayot
      LaurentPayot
    • RE: In Quasar, what can be considered a "page"

      Sometimes a single component can be used for several pages (i.e. routes). That’s the beauty of routing 😉
      Do you know nuxt? https://nuxtjs.org/guide/routing

      posted in Help
      LaurentPayot
      LaurentPayot

    Latest posts made by LaurentPayot

    • RE: PWA ServiceWorker example (0.16.4)

      @al1_andre Sounds like an issue with background sync.

      Unfortunately, for now, background sync only works with Chrome.

      posted in Help
      LaurentPayot
      LaurentPayot
    • RE: [solved] Question about service worker & caching problem.

      @mesqueeb I just saw your question. I’m using Firebase so I’m simply using Firebase offline persistence features.

      posted in Framework
      LaurentPayot
      LaurentPayot
    • RE: vue-cli 3.0 and the future of quasar-cli

      I’m going full PWA so I do not need Electron nor Cordova. I use vue-cli 3 with a customized Quasar UMD build (removed unneeded components and css with a bit of metaprogramming) and with a custom script at startup I can dynamically load different themes depending on the platform.
      The more I use vue-cli the more I think quasar-cli is amazing because it really hides a lot of complexity from developers.

      posted in CLI
      LaurentPayot
      LaurentPayot
    • RE: Quasar v0.16 & CLI v0.16 are out!

      I really needed Ionicons v4. Thanks Razvan!

      posted in Announcements
      LaurentPayot
      LaurentPayot
    • RE: Authenticate Using OAuth Providers with Cordova

      Also maybe this is an issue as Cordova uses WebView if I’m right: https://developers.googleblog.com/2016/08/modernizing-oauth-interactions-in-native-apps.html

      posted in Help
      LaurentPayot
      LaurentPayot
    • RE: Authenticate Using OAuth Providers with Cordova

      @driedler I took the PWA train months ago. But I remember I had some issue with Cordova and firebase OAuth. I had to call auth.getRedirectResult() at the created hook of my component where the authentication takes place, because the app was destroyed before sign-in was complete, so a new app was created after authentication and getRedirectResult() had to be called asap.

      Hope it helps…

      posted in Help
      LaurentPayot
      LaurentPayot
    • RE: Quasar Vue CLI 3 Plugin

      Amazing 🎉

      posted in Announcements
      LaurentPayot
      LaurentPayot
    • PWAs: now on iOS 11.3

      https://medium.com/@firt/progressive-web-apps-on-ios-are-here-d00430dee3a7

      posted in CLI
      LaurentPayot
      LaurentPayot
    • RE: [0.15.11] Drawer hide animation problem on mobile

      I think this will be fixed in 0.15.8: https://github.com/quasarframework/quasar/issues/1783

      posted in Framework
      LaurentPayot
      LaurentPayot
    • RE: [0.15.11] Drawer hide animation problem on mobile

      Same issue here. Wasn’t here in 0.15.4. When you land on or refresh the page you can see the drawer hiding like a mouse when you turn the light on in a garage.

      @Max no-hide-on-route-change just prevent the drawer from hiding when changing routes. But here the drawer hides at app startup.

      posted in Framework
      LaurentPayot
      LaurentPayot