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. rld
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Best 0
    • Groups 0

    rld

    @rld

    0
    Reputation
    17
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    rld Follow

    Latest posts made by rld

    • RE: [v1] QSelect v-model value shown as default, not label

      Ok, but is standard before v1

      posted in Framework
      R
      rld
    • RE: Sentry + Quasar

      I init like this

      Sentry.init({
      dsn: “https://xxxxxxxxxxxxxx@sentry.io/yyyyyyyyyyy”,
      release: process.env.VUE_APP_COMMITHASH,
      environment: process.env.VUE_APP_BRANCH,
      integrations: [
      new Integrations.Vue({
      Vue,
      attachProps: true
      })
      ],
      beforeSend(event, hint): any {
      if (event.extra && event.extra.propsData) {
      let s: string = JSON.stringify(event.extra.propsData);
      if (s.length > 10000) {
      event.extra.propsData = {};
      event.extra.propsData.jsonstring = s.substring(0, 10000);
      }
      }
      // console.log(“beforeSend”, event, hint, s.length);
      return event;
      }
      });

      and upload map files in my docker build

      RUN npm install -g @sentry/cli --unsafe-perm
      RUN sentry-cli releases new “$GIT_COMMIT”
      RUN sentry-cli releases files “$GIT_COMMIT” upload-sourcemaps ./wwwroot --rewrite --ignore node_modules --ignore webpack.config.js

      posted in Framework
      R
      rld
    • RE: [v1] QSelect v-model value shown as default, not label

      using
      https://cdn.jsdelivr.net/npm/quasar@1.0.0-rc.4/dist/quasar.umd.min.js

      posted in Framework
      R
      rld
    • [v1] QSelect v-model value shown as default, not label

      The component is showing the value of V-model instead of its label

      https://codepen.io/anon/pen/ydNRGV?&editable=true&editors=101

      posted in Framework
      R
      rld