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

    Posts made by syflex

    • RE: Laravel + Quasar 1.0 with Quasar CLI

      Yeah you can use quasar UMD/standalone. Look up https://v1.quasar-framework.org/start/umd.

      But I sure you quasar cli. Is a great experience, you won’t regret it

      posted in Starter Kits
      syflex
      syflex
    • RE: Quasar v1.0

      https://medium.com/quasar-framework/quasar-1-0-reaching-for-the-stars-284e7716625a

      According to the release note.
      Slimming down
      One last and major goal of Quasar 1.0’s component rework was to reduce the complexity of the components themselves. For instance, instead of having a QSearch and QAutocomplete, we now have only QSelect.

      As for the QInput, you can find it in form component.

      posted in Help
      syflex
      syflex
    • RE: QUploader model

      QUploader is great. U only need to see it with different eyes ☺

      What ever u want I can show you just describe what you want in details

      posted in Framework
      syflex
      syflex
    • RE: Laravel + Quasar 1.0 with Quasar CLI

      You already have everything you need.

      Use laravel as a back-end api and quasar as front-end. And you can deploy spa, pwa, mobile(android,iOS, many more ), windows app and what ever you can think of. ☺

      I can show you how to, if you want extra direction.

      posted in Starter Kits
      syflex
      syflex
    • RE: Quasar v1.0 beta has arrived

      Quasar framework is an amazing framework and you guys just delivered a crazily awesome tool For developers.

      Thank you quasar team and community

      posted in Announcements
      syflex
      syflex
    • RE: Changes in the store are not reflected

      please provide your current code workflow for easy solution

      posted in Help
      syflex
      syflex
    • RE: reset state in vuex

      export const clear_errors = (state, errors) => {
      state.errors = “”
      }

      is the quickest way to go and just commit it when you need to clear state.errors

      posted in Help
      syflex
      syflex
    • RE: Quasar v1.0 beta1 in a few days

      @rstoenescu @s-molinari. Great work. Thank you for your time

      posted in Announcements
      syflex
      syflex
    • RE: reset state in vuex

      Create a mutation that call the state object (errors) and reinitialise it to null or " " .

      Then commit the mutation on created hook of save and update form page.

      I will write you the code if you still don’t get it.

      posted in Help
      syflex
      syflex
    • RE: Redirect to page after action

      This.$router.push("/home") or
      This.$router.push({name: “home”})

      Good luck

      posted in Framework
      syflex
      syflex
    • RE: how can I nest q-layouts?

      A visual representation would have been better so I will know what you are trying to achieve. But I think u should use q-toolbar in place of the layout B

      posted in Help
      syflex
      syflex
    • RE: How can I test on my device?

      https://quasar-framework.org/guide/cordova-build-commands.html

      posted in Help
      syflex
      syflex
    • RE: q-side-link is not clickable

      This should do.

      <q-layout-drawer
      v-model=“drawerState”
      :content-class="$q.theme === ‘mat’ ? ‘bg-grey-3’ : null"
      >
      <q-list no-border link inset-delimiter dense>
      <q-list-header>Menu</q-list-header>

                  <q-item to="/foo">
                      <q-item-main label="Foo router"> </q-item-main>
                  </q-item>
              
            </q-list>
          </q-layout-drawer>
      posted in Help
      syflex
      syflex
    • RE: q-side-link is not clickable

      So I don’t see q-side-link on the QList sub components. So remove that line of code and add to="/foo" to the q-item without the exact

      posted in Help
      syflex
      syflex
    • RE: Global Loading and messaging

      Can you show the code of what you have done so far. It helps in solving your problem

      posted in Help
      syflex
      syflex
    • RE: q-route-tab problem

      Use a named route. That is more effective.
      Add name: ‘Index’, and name: ‘Blah’ in your route file. And access it using:
      :to="{name: ‘Index’}"
      :to="{name: ‘Blah’}"

      posted in Help
      syflex
      syflex
    • How to i convert the followin array to tree for q-tree components

      please i need help on this, I’ve searched for hours and cant find a solution.

      please how do i remove the keys(8,26 and root) and convert it into a tree structure for quasar tree component.

      { “8”: [
      { “id”: 14, “user_id”: 4, “post_id”: 17, “parent_id”: 8, “content”: “ok”,“created_at”: “2018-04-19 08:55:23”,
      “user”: { “id”: 4, “name”: “mentor”}
      },
      { “id”: 55, “user_id”: 4, “post_id”: 17, “parent_id”: 8, “content”: “hello”, “created_at”: “2018-10-28 20:43:25”,
      “user”: { “id”: 4, “name”: “mentor”}
      }
      ],

      “26”: [
      { “id”: 27, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “goood”, “created_at”: “2018-05-26 10:27:45”,
      “user”: { “id”: 4, “name”: “mentor”}
      },
      { “id”: 56, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “ok ok ok”, “created_at”: “2018-10-28 20:43:36”,
      “user”: { “id”: 4, “name”: “mentor”}
      },
      { “id”: 57, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “hhfhsjfdjhffd”, “created_at”: “2018-10-28 20:44:06”,
      “user”: { “id”: 4, “name”: “mentor”}
      }
      ],

      “root”: [
      { “id”: 8, “user_id”: 4, “post_id”: 17, “parent_id”: null, “content”: “hello”,“created_at”: “2018-04-18 17:51:25”,
      “user”: { “id”: 4, “name”: “mentor”}
      },
      { “id”: 26, “user_id”: 4, “post_id”: 17, “parent_id”: null, “content”: “hello”,“created_at”: “2018-05-26 10:27:37”,
      “user”: { “id”: 4, “name”: “mentor” }
      }
      ]
      }

      thanks

      posted in Help
      syflex
      syflex
    • RE: Best Approach To Upload image using <q-uploader>

      @edudesouza this helps a lot

      thanks

      posted in Help
      syflex
      syflex
    • [Quasar I18n issues ] how to use default languages

      hello.

      so after setting up Quasar I18n.

      • using {{ $q.i18n.label.close }} works, but the language file is not on my src/en-us, so where did it get the language file from and how do i edit the file or get it into my project.

      • how do i use the default language file that comes with quasar :
        export default {
        failed: ‘Action failed’,
        success: ‘Action was successful’
        }

      • using {{ $q.i18n.success }} doesn’t work even though my src/en-us has it on the file

      thank you

      posted in Help
      syflex
      syflex
    • how to use q-uploader with other form inputs

      i really don’t understand q-uploader . how do i use it with other form input, then when i click on save then it upload along with my input fields.
      I’m really confuse whats is the best way to use it.

      thank you

      posted in Help
      syflex
      syflex