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. Beefy_carrot
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Groups 0

    Beefy_carrot

    @Beefy_carrot

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Beefy_carrot Follow

    Latest posts made by Beefy_carrot

    • How to do realtime update of data from azure using API

      Hi! i want to display sensor data from my azure sql database in realtime. i have come far with it and can display the data using my created function:

      created() {
      axios.get(‘local host link here’)
      .then(response => {
      this.sensors = response.data.slice(-1)[0]
      console.log(response)
      })
      }
      }

      this function gets all the data from the database ( i know not the best way to handle data, but API was tough for me) and logs it out to the consol and add’s it to the data object “sensors”

      My probelm is that i need to refresh the page to get new values. i know i can loop it to run the function several times. but is their another way ??

      posted in Help
      B
      Beefy_carrot
    • RE: TypeError: Cannot read property 'mat' of undefined

      Btw when i run npm audit fix, it dosent solve the problem.

      fixed 882 of 891 vulnerabilities in 15548 scanned packages
      9 vulnerabilities required manual review and could not be updated

      posted in Help
      B
      Beefy_carrot
    • TypeError: Cannot read property 'mat' of undefined

      Hi! im very new to qusar, im trying to use a zip file i downloaded from a udemy course. I unzipped the file to a folder named original in the directory C:\Users\henri. first thing i do is the command: cd original, npm install and then qusar dev. i get this message:

      app:quasar-conf Reading quasar.conf.js +0ms
      [ TypeError: Cannot read property ‘mat’ of undefined

      • quasar.conf.js:12 QuasarConfig.module.exports [as quasarConfigFunction]
        C:/Users/henri/original/quasar.conf.js:12:17

      • quasar-config.js:218 QuasarConfig.prepare
        [henri]/[@quasar]/app/lib/quasar-config.js:218:13

      • quasar-dev:217 goLive
        [henri]/[@quasar]/app/bin/quasar-dev:217:24

      • task_queues.js:97 processTicksAndRejections
        internal/process/task_queues.js:97:5

      ]
      app:dev ⚠️ [FAIL] quasar.conf.js has JS errors +13ms

      does anyone know why ?

      posted in Help
      B
      Beefy_carrot