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

    Posts made by Geita

    • RE: Q-expansion-item conditional class on expanded item

      .q-expansion-item–expanded {
      color: green;
      }.

      posted in Help
      G
      Geita
    • Open expantion item trough router-link

      Not a quasar spesific question but. How would i go about if i want to open an expantion item on page 2, when i click a router link to page 2 on page 1?

      posted in Help
      G
      Geita
    • RE: Select and router links

      @s-molinari Beautiful!!🙌 🙌 🙌 . Thanks.

      posted in Help
      G
      Geita
    • Select and router links

      Are there an easy way to have router-links in an q-select, autocomplete and so on ? I want to list child-pages in a q-select and load them into router-view.

      <template>
      <div>
      <q-select
      filled
      v-model=“model”
      :options=“options”
      map-options
      />

      <router-view></router-view>
      </div>
      </template>

      export default {
      data () {
      return {
      model: null,
      options: [
      {
      label: ‘Google’,
      value: ‘goog’,
      to:’/child-page or href:’/childpage’
      },

      posted in Help
      G
      Geita