Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I update my extersion Vue Language Features (Volar) to v1.4.1
(with vue3 and ts)
then my code shows following error

radioButton is one of my table column

row and index are the data and index that I set into the table from API should I cahange any setting or I need to fix my code?

You probably didn't define row as props in your component, a type definition e.g., can be export default { props: { row: { type: String, required: true } } } , which accepts row as a String type. Can you make sure you have definitions of both row and index? Where are you getting these values from (of row and index)? Jishan Shaikh Apr 21 at 5:59 row and index are the data and the key from my table(i do set a list to my table), before i update my extension, the error didn't show 蘇柏綸 Apr 21 at 6:31

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question . Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers .