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. brunomeurer
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 8
    • Best 1
    • Groups 0

    brunomeurer

    @brunomeurer

    1
    Reputation
    190
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Website www.linkedin.com/in/bruno-f-meurer-bb970746/ Location Brazil

    brunomeurer Follow

    Best posts made by brunomeurer

    • RE: q-btn-toggle not displaying initial value

      Hello Mchiaelb,

      I think that component expected a boolean value and you passed a integer value.
      You did try construct the computed property? like this:

      export default {
        data () {
          return {
            book: {'owned': 1},
            ownedOptions: [
              {label: 'We have this book', value: 1},
              {label: 'Wish list', value: 0}
            ]
          },
        computed: {
          form: {
             get () {
               return this.book.owned === 1
             },
            set (value) {
               this.book.owned = value ? 1 : 0
            }
          }
        }
      }
      

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer

    Latest posts made by brunomeurer

    • RE: q-btn-toggle not displaying initial value

      You can simulate your problem in codepan?

      I’m tryng, but its working:
      codepan test

      posted in Help
      B
      brunomeurer
    • RE: Available Slots for QTables post 0.15 OR Event Listener for Table Selection post 0.15

      Hello randomruss,

      You have make something like this:

      <q-table class="bg-white q-mb-sm margem"
        title="Condições de pagamento"
        :data="list"
        :columns="columns"
        :loading="this.carregandoLista"
        dense hide-bottom
      >
        <q-td slot="body-cell-name" slot-scope="props" :props="props">
          <q-btn 
            icon="edit"
            size="sm"
            color="secondary"
            @click="edit(props.row)"
          />
        </q-td>
      </q-table>
      

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • RE: How to use 'new vue' in Quasar

      Hello Oxar,

      The new Vue make a new instance of vue and we must created just only once. The quasar framework already make this for us and you should not worry about that. Your scructure is ok, but you dont have <template></template> or <style></style> like this:

      <template>
        <div v-for="(item, index) in rows" :key="index">
           {{item.name}}
        </div>
      </template>
      
      <script>
      export default {
        data () {
          return {
            rows: [
              {id: 1, name: ‘Rad’, cot: ‘lomdn’, instn: ‘mA’}
            }
          }
        }
      }
      </script>
      
      <style>
      
      </style>
      

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • RE: q-input masks

      Hello Kerbo,

      I’m use v-mask, but dont works really nice when we have a number properties. When this happened, i’m converted the result manually.

      What your error during the run with v-mask?

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • RE: Serve Quasar Project on Regular Website

      Hello joefly,

      Do you have trying hosting your app at your home network? And If you run a quasar dev your app work fine?
      When i need do a thing like this, i’m use firebase hosting, it is very simple and work fine.

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • RE: q-btn-toggle not displaying initial value

      Hello Mchiaelb,

      I think that component expected a boolean value and you passed a integer value.
      You did try construct the computed property? like this:

      export default {
        data () {
          return {
            book: {'owned': 1},
            ownedOptions: [
              {label: 'We have this book', value: 1},
              {label: 'Wish list', value: 0}
            ]
          },
        computed: {
          form: {
             get () {
               return this.book.owned === 1
             },
            set (value) {
               this.book.owned = value ? 1 : 0
            }
          }
        }
      }
      

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • RE: Change color of blockquote

      Hi,

      i tryed resolve this with class in <style> but only can use property style=“style=‘border-color: #FF9800’”.

      Thanks.

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer
    • Change color of blockquote

      Hello guys,

      It is possible change color of blockquote in current version? Actually the color is default primary, but it would be interesting the possibility to change this color.

      Regards,
      Bruno Meurer

      posted in Help
      B
      brunomeurer