No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. RichAyotte
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 8
    • Best 1
    • Groups 0

    RichAyotte

    @RichAyotte

    2
    Reputation
    539
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Website ayottesoftware.com Location Canada

    RichAyotte Follow

    Best posts made by RichAyotte

    • RE: quasar dev command to use https

      Here’s what I came up with. https://gist.github.com/RichAyotte/8243ebf768f059a634206a201f5c5851

      posted in Help
      RichAyotte
      RichAyotte

    Latest posts made by RichAyotte

    • RE: Quasar v0.17.10, CLI v0.17.13, Extras v2.0.6 & Vue CLI plugin v0.17 are out!

      Swipeable and animated QTab panes

      Nice! I can now replace my Carousel/QTab hack 🙂

      posted in Announcements
      RichAyotte
      RichAyotte
    • RE: Quasar & Quasar CLI v0.17.0 are out! SSR arrived.

      So many goodies in this release. Using QTable grid will be my first refactor but I’ll probably be implementing all of the new features.

      I have a question about preFetch. How does it differ from beforeCreate?

      Thank you for this very easy and smooth upgrade.

      posted in Announcements
      RichAyotte
      RichAyotte
    • RE: Quasar v0.15.2 is out!

      I’m still working through the migration from 0.14 but it’s going well and it’ll be totally worth it when done. Thanks again for this amazing work.

      posted in Announcements
      RichAyotte
      RichAyotte
    • RE: Webpack3 starter kit

      Anyone who’s migrating to WP3 and noticed that hot reload stopped working can safely remove the event subscription.

      In build/hot-reload.js Replace

      const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
      hotClient.subscribe(event => {
      	if (event.action === 'reload') {
      		// eslint-disable-next-line no-undef
      		window.location.reload()
      	}
      })
      

      with

      require('webpack-hot-middleware/client?noInfo=true&reload=true')
      
      posted in Announcements
      RichAyotte
      RichAyotte
    • RE: Questions about q-route-tab in 0.14

      I didn’t notice a <router-view/> in that screenshot, did you include it? Also, describe what’s not working.

      posted in Help
      RichAyotte
      RichAyotte
    • RE: quasar dev command to use https

      Here’s what I came up with. https://gist.github.com/RichAyotte/8243ebf768f059a634206a201f5c5851

      posted in Help
      RichAyotte
      RichAyotte
    • RE: Sequelize ORM

      Are you trying to use Sequelize on the frontend as in the browser?

      posted in Starter Kits
      RichAyotte
      RichAyotte
    • RE: Serve file from root in dev server?

      I’ve made a few tweaks.

      Instead of using the CopyWebpackPlugin, I took a simpler approach by adding the following to script.dev.js

      // serve root static assets
      app.use(path.posix.join(
      	webpackConfig.output.publicPath
      	, '/'
      ), express.static('./src/root'))
      

      And then in script.build.js add:

      shell.cp('-R', 'src/root/*', targetPath)
      
      posted in Help
      RichAyotte
      RichAyotte