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. devmime
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 4
    • Best 2
    • Groups 0

    devmime

    @devmime

    3
    Reputation
    5
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    devmime Follow

    Best posts made by devmime

    • RE: From MacOSX can I have quasar dev launch into Chrome instead of the default Safari?

      It’s working with the open option.

      devServer: {
         open: 'Google Chrome'
       },
      
      posted in Help
      D
      devmime
    • RE: How can i get the response of a uploader?

      @uploaded -> function(info) has a Parameter “info” which has wo props: “files” and “xhr”.
      When you are doing following it works.

      In the QUploader:
      @uploaded=“fileUploaded”

      and in the methods:
      fileUploaded ({ files, xhr }) {
      console.log(JSON.parse(xhr.response))
      }

      posted in Help
      D
      devmime

    Latest posts made by devmime

    • RE: How to configure alternate web browser for devServer

      Which OS you have? On Mac it’s work.

      “The browser application name is platform dependent. Don’t hard code it in reusable modules. For example, ‘Chrome’ is ‘Google Chrome’ on macOS, ‘google-chrome’ on Linux and ‘chrome’ on Windows.” Source: https://webpack.js.org/configuration/dev-server/#devserver-open

      posted in Framework
      D
      devmime
    • RE: From MacOSX can I have quasar dev launch into Chrome instead of the default Safari?

      It’s working with the open option.

      devServer: {
         open: 'Google Chrome'
       },
      
      posted in Help
      D
      devmime
    • RE: How can i get the response of a uploader?

      @uploaded -> function(info) has a Parameter “info” which has wo props: “files” and “xhr”.
      When you are doing following it works.

      In the QUploader:
      @uploaded=“fileUploaded”

      and in the methods:
      fileUploaded ({ files, xhr }) {
      console.log(JSON.parse(xhr.response))
      }

      posted in Help
      D
      devmime
    • RE: Q-uploader with factory function

      It is a long time ago but what you can do is to resolve() instead of resolve(files). This works for me.

      posted in Help
      D
      devmime