随笔分类 - VUE
摘要:父组件: <!-- An example of creating a reusable grid component and using it with external data. --> <script setup> import DemoGrid from '../components/Gri
阅读全文
摘要:<template> <table> <thead> <tr> <th v-for="col in gridColumns" :key="col"> {{ col }}</th> </tr> </thead> <tbody> <tr v-for="(row,index) in gridData" :
阅读全文