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

    Best posts made by diadal

    • RE: Property '$q' does not exist on type

      @metalsadman said in Property '$q' does not exist on type:

      context.root.$q

      yah it works

      posted in Framework
      D
      diadal
    • Property '$q' does not exist on type

      how to access this.$q under setup()

      <script lang="ts">
      // import { LoadingBar } from 'quasar'
      import { defineComponent, onMounted } from '@vue/composition-api'
      
      export default defineComponent({
        name: 'AuthLayout',
        setup () {
            onMounted(() => {
              this.$q.loadingBar.stop()
              console.log('mounted!')
      
              })
          return { }
        }
      })
      </script>
      
      posted in Framework
      D
      diadal