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. patryckx
    • Profile
    • Following 1
    • Followers 2
    • Topics 11
    • Posts 119
    • Best 37
    • Groups 0

    Patrick Monteiro

    @patryckx

    Web Developer

    60
    Reputation
    376
    Profile views
    119
    Posts
    2
    Followers
    1
    Following
    Joined Last Online
    Email eng.patrickmonteiro@gmail.com Website patrickmonteiro.com.br Location Brasil

    patryckx Follow

    Best posts made by patryckx

    • Sample application for reading QRCode. (Without cordova)

      Simple design using vue-qrcode-reader.

      4e70befb-6a52-427f-8e83-db7b7486fbb4-image.png


      1c2eb6d3-d209-4ead-b6bc-20ae2fdcfe95-image.png

      Github: https://github.com/patrickmonteiro/quasar-qrcode-reader

      Demo: https://quasar-qrcode-reader.surge.sh/#/

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: QSelect showing option value instead of label

      @reath I think you’re missing map-options:

      https://quasar.dev/vue-components/select#Example--Map-options

      posted in Framework
      patryckx
      patryckx
    • Barcode reader with javascript only.

      Hello guys!
      Leave barcode reader only with Javascript in the Quasar Framework.
      It enables you to create a SPA or PWA application for reading, without relying on the cordova.
      I used QuaggaJS as a library.
      Github: https://github.com/patrickmonteiro/quasar-barcode-reader
      DEMO: https://quasar-barcode-reader.surge.sh/#/

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • OAuth2(Facebook, Instagram, Github) with Hello.js + Quasar Framework

      I wrote an article on how to implement OAuth2 with social networks using a library called Hello.js

      The article is in pt-br

      http://viladosilicio.com.br/autenticacao-com-hello-js-no-quasar-framework/

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • Quasar + Web API's (Battery, Bluetooth, Vibration...)

      Hello!
      I am providing another sample application.
      This time, using Web APIs, grouped in a single project.

      The purpose is to generate a knowledge base for new developers.

      There is a lot of work ahead, a lot of study and testing is needed. Browser compatibility is totally different.

      However the focus is to look for alternatives to cordova plugins, facilitating the implementation of PWA’s as well.

      As there is little material in Portuguese (pt-BR), I am using Portuguese as the native language of the application.

      Demo: https://quasar-web-apis.surge.sh/#/

      Github: https://github.com/patrickmonteiro/quasar-web-apis

      Screens:

      web-apis.PNG

      web-apis-menu.PNG

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • Quasar e Apex Charts [Sample application]

      Hello person.

      I made an example repository of integration between Quasar V1 and Apex Charts.
      Integration is extremely easy.
      There is a good range of graphics, and responsiveness is great too

      we use the npm packages:

      • apexcharts
      • vue-apexcharts

      Github: https://github.com/patrickmonteiro/quasar-apexcharts

      Here are some prints:
      753cc2e9-a36d-42c5-836f-63b55c614596-image.png

      11388577-6c7f-42b7-bed6-082dc613f386-image.png

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • Using fingerprint on android with Quasar(cordova mode)

      Follow github with the example project:

      https://github.com/patrickmonteiro/quasar-cordova-fingerprint

      fp1.jpeg
      fp2.jpeg fp3.jpeg

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Problem with cordova plugin TTS

      @luckmenez To help you, I will make a change to a repository I have in github. as soon as it is available I will send you msg here.

      posted in Help
      patryckx
      patryckx
    • RE: [SOLVED] Multi Q-Select with an array of objects

      @coopersamuel
      The answer you find here: https://quasar.dev/vue-components/select#Example--Custom-label%2C-value-and-disable-props

      You can change the label type and value using:

      • option-value = “id”
      • option-label = “name”

      Also be sure to add:

      • emit-value
      • map-options

      Select example:

      <q-select
                filled
                v-model="model"
                use-input
                multiple
                map-options
                emit-value
                option-value="id"
                option-label="name"
                use-chips
                stack-label
                input-debounce="0"
                label="Simple filter"
                :options="options"
                @filter="filterFn"
                style="width: 250px"
              >
      
      posted in Framework
      patryckx
      patryckx
    • Quasar Framework + Speech API

      Design a SPA developed with Quasar Framework + Speech API to capture audio and transform into text, or use text as the basis for the application to output audio.

      DEMO: https://quasarspeechapi.surge.sh

      GITHUB: https://github.com/patrickmonteiro/quasar-speech-api

      posted in Useful Tips (NEW)
      patryckx
      patryckx

    Latest posts made by patryckx

    • RE: Investment account dashboard

      @metalsadman thanks for the feedback

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Investment account dashboard

      photo5177192972494678281.jpg

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • Investment account dashboard

      Design sem nome.png

      github: https://github.com/patrickmonteiro/quasar-warren

      demo: http://quasar-warren.surge.sh/

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Quasar e Apex Charts [Sample application]

      New examples added!

      Captura de Tela 2021-01-08 às 11.22.56.png

      Captura de Tela 2021-01-08 às 11.23.02.png

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Quasar Framework + Speech API

      @jmriyaz84 said in Quasar Framework + Speech API:

      https://developer.mozilla.org/pt-BR/docs/Web/API/SpeechRecognition#Browser_compatibility

      Well, for browsers I don’t think there is a solution. Unless you force iphone users to use chrome for this.

      You have the alternative of generating hybrid apps with corva and using the TTS plugin:

      https://www.npmjs.com/package/cordova-plugin-tts

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Updated to Quasar/app 2.1.1 - Uncaught TypeError: Cannot set property 'axios' of undefined

      how is your BASE_URL code in quasar.conf.js?

      posted in Help
      patryckx
      patryckx
    • RE: Quasar e Apex Charts [Sample application]

      new examples added!

      1206668d-6251-4f63-8f23-a067f1ffac5a-image.png

      posted in Useful Tips (NEW)
      patryckx
      patryckx
    • RE: Vuex getter undefined

      @Incremental And getters are computed and not method

      posted in Framework
      patryckx
      patryckx
    • RE: Vuex getter undefined

      @Incremental

      https://vuex.vuejs.org/guide/getters.html#method-style-access

      afa47d8d-7505-4aea-ac81-c04c80adf521-image.png

      posted in Framework
      patryckx
      patryckx
    • RE: How can I get the total table list?

      Using pagination-slot

      https://quasar.dev/vue-components/table#Example--Pagination-slot

      166c7d6c-81c6-41b9-b922-3707d4400ce5-image.png

      totalRowsNumber

      posted in Help
      patryckx
      patryckx