Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

152
Views
How can you convert a string with the name of an array to render the array in vue.js template
<b-card v-for='callType in callTypes' no-body class="mb-1">
    <b-table striped hover :items="{{callType.lineType}}">
    </b-table>
</b-card>

When each callType is the name of an array.

callTypes: [mainLine, etc]
mainLine:  [firstline: number, etc etc]

Error: vue.runtime.esm.js?2b0e:619 [Vue warn]: Invalid prop: type check failed for prop "items". Expected Array, Function, got String with value "mainLine".

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

If your array is declared in data() then you could access it this way:

<b-card v-for='callType in callTypes' no-body class="mb-1">
    <b-table striped hover :items="$data[callType.lineType]">
    </b-table>
</b-card>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!