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. [v1] App Extensions
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • E

      Problem Importing QCalendar
      • ElTigreChino

      4
      0
      Votes
      4
      Posts
      1382
      Views

      U

      Hi, any updates on this topic? I have the same problem, I installed QCalendar via Quasar Cli with

      quasar ext add @quasar/qcalendar

      and when I’m trying an example from the example page by copying the template then the script part, my console from browser prints:

      ReferenceError: QCalendar is not defined

      The example which I want to use is the QCalendar(Month) with daily slots.

    • K

      qpdfviewer - src: Server-URL with Token for Authorization is truncated
      • kwi

      5
      0
      Votes
      5
      Posts
      315
      Views

      G

      @gruppler Figured it out! Just need to run the src through encodeURIComponent first.

    • R

      Media Player Pause when the user click in video area
      • rlinkerstain

      3
      1
      Votes
      3
      Posts
      288
      Views

      Hawkeye64

      Turn on mobile mode

    • Hawkeye64

      QScroller v1.1.2 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      145
      Views

      No one has replied

    • Hawkeye64

      QScroller v1.1.1 released!
      • Hawkeye64

      1
      1
      Votes
      1
      Posts
      144
      Views

      No one has replied

    • Hawkeye64

      QMediaplayer v1.2.1 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      179
      Views

      No one has replied

    • D

      This topic is deleted!
      • digiparker

      1
      0
      Votes
      1
      Posts
      5
      Views

      No one has replied

    • Hawkeye64

      App extensions dotenv v1.1.0 and QEnv v1.1.0 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      178
      Views

      No one has replied

    • Hawkeye64

      QMediaPlayer v1.2.0 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      159
      Views

      No one has replied

    • D

      Quasar v2 upgrade problem with q-calendar
      • David5446

      3
      0
      Votes
      3
      Posts
      993
      Views

      Hawkeye64

      @David5446 None of the UI app extensions support quasar v2 (Vue v3) yet

    • Hawkeye64

      QMediaPlayer v1.1.5 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      147
      Views

      No one has replied

    • C

      This topic is deleted!
      • Cosby

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • Hawkeye64

      QIconPicker v1.2.10 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      128
      Views

      No one has replied

    • Hawkeye64

      dotenv app-ext v1.0.6 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      119
      Views

      No one has replied

    • Hawkeye64

      QEnv v1.0.4 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      121
      Views

      No one has replied

    • Hawkeye64

      QCalendar v3.3.5 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      135
      Views

      No one has replied

    • Hawkeye64

      @quasar/qflashcard v1.0.0-beta.5 Release!
      • Hawkeye64

      12
      1
      Votes
      12
      Posts
      614
      Views

      P

      Another secret feature of the Quasar. šŸ‘¾
      I feel lucky clicking the forum today.
      Now let me see if I can create a learning app with that 😃

    • Hawkeye64

      QCalendar v3.3.4 released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      130
      Views

      No one has replied

    • Hawkeye64

      QCalendar v3.3.2 has been released!
      • Hawkeye64

      1
      0
      Votes
      1
      Posts
      127
      Views

      No one has replied

    • R

      Graphql Extension
      • rainer9202

      2
      0
      Votes
      2
      Posts
      285
      Views

      R

      @rainer9202 You will need to import the Apollo Client into your js file.

      I created my own Apollo Client boot file and I am using Vuex. Vuex is just a JavaScript file. Not an exact match to what you are doing but should be close enough to get you started. Hope this helps.

      Here is how I import the Apollo Client into a Vuex js file.

      import gql from 'graphql-tag' import { apolloProvider } from 'boot/apolloClient' import { Notify } from 'quasar' const gqlClient = apolloProvider.defaultClient

      This is an example of a query with parameters.

      const response = await gqlClient.query({ query: gql` query AllScheduledRecordings( $orderBy: [OrderByFields] $filterBy: [FilterByFields] $between: [BetweenFields] $whereIn: [WhereInField] $page: Page ) { allScheduledRecordings( orderBy: $orderBy filterBy: $filterBy between: $between whereIn: $whereIn page: $page ) { oid name channelOid recurrenceOid channelName filename status startTimeLocal endTimeLocal failureReason eventDetails landscapeUrl posterUrl logoUrl videoFiles { name base dir ext baseURL } } } `, variables: { ...payload } })