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. fatima.yas
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 10
    • Best 1
    • Groups 0

    fatima.yas

    @fatima.yas

    1
    Reputation
    100
    Profile views
    10
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    fatima.yas Follow

    Best posts made by fatima.yas

    • RE: [Solved] When some property of array is object how to use v-for

      thank you.i solved it

      posted in Help
      F
      fatima.yas

    Latest posts made by fatima.yas

    • RE: [Solved] QSelect @change broken in 0.15?

      @jeffatpf thank you. i use your solution☺

      posted in Help
      F
      fatima.yas
    • RE: [Solved] When some property of array is object how to use v-for

      thank you.i solved it

      posted in Help
      F
      fatima.yas
    • RE: How can i use watermark on image in quasar.and add watermark plugin?

      At the first i run quasar new plugin watermark in terminal space.after that i download watermark.js and copy codes in watermark.js that generate in plugins folder and write ‘watermark’ to plugins in quasar.conf.js
      i hope ,i explain completely

      posted in Help
      F
      fatima.yas
    • RE: [Solved] When some property of array is object how to use v-for

      @s-molinari i use Quasar cli and i install that by below code:
      npm install -g quasar-cli
      quasar init project-name

      posted in Help
      F
      fatima.yas
    • RE: How can i use watermark on image in quasar.and add watermark plugin?

      i add watermark.js file to plugins folder and add to quasar.conf.js ,but i doesnt work
      and the error is undefine in plugin folder

      posted in Help
      F
      fatima.yas
    • RE: [Solved] When some property of array is object how to use v-for

      @shone hi,i read a lot of vue js document and tutorials.i write my code in pages folder in project.that generated when run npm install -g quasar-cli …
      you think, it is wrong???😕
      Although all of my code worked correctly even some time i use the api request in my code .and i get the result
      what i do?

      posted in Help
      F
      fatima.yas
    • RE: [Solved] When some property of array is object how to use v-for

      @hawkeye64 thank you,i changed it,but doesnt work

      posted in Help
      F
      fatima.yas
    • RE: [Solved] When some property of array is object how to use v-for

      @s-molinari thank you,but i write my code in .vue file and dont use the
      new vue ({
      el:’ ',
      …
      })

      posted in Help
      F
      fatima.yas
    • [Solved] When some property of array is object how to use v-for

      hi, i have a problem,i have a varieties array with property that one of them is object. I cant get value of size …
      Also tableDataVariety is result of api request that i want to show in table.thanks for help

            <q-table 
         class="responsive bg-white" 
          :data="tableDataVariety"
          :columns="Varietycolumns"
          row-key="ID"
          separator="cell"
             >
         <tr slot="header" slot-scope="props" >
          <q-th key="price" :props="props">
            <span  class="text-grey-9"><strong>price</strong></span>
          </q-th>
            <q-th key="size" :props="props" >
            <span  class="text-grey-9"><strong>size</strong></span>
          </q-th>
           <q-th key="height" :props="props" >
            <span  class="text-grey-9"><strong>height</strong></span>
          </q-th>
          
         </tr>
        <template slot="body" slot-scope="props">
          <q-tr :props="props">
            <q-td key="price"  :props="props">{{ props.row.price }}</q-td>
            <q-td key="size">
              {{props.row.size.value}}
            </q-td>
            <q-td key="height"  :props="props">{{ props.row.height }}</q-td>       
      <q-td key="length"  :props="props">{{ props.row.length }}</q-td>
          
          </q-tr>
        </template>
        </q-table>```
      ```javascript
      Varietycolumns: [
              { name: 'price', label: 'price', field: 'price', sortable: true,align:'center' },
              { name: 'size', label: 'size', field: 'size' },
              { name: 'height', label: 'height', field: 'height',align: 'center',}
      ]
      
      tableDataVariety: [{ID: 440, price: "0", quantity: "0", minQuantity: "0", length: "0.00",size: {ID: 3, value: "9 meter"}},
      ]
      
      posted in Help
      F
      fatima.yas
    • How can i use watermark on image in quasar.and add watermark plugin?

      How can i use watermark on image in quasar.and i must add watermark plugin?

      posted in Help
      F
      fatima.yas