0

我使用 nuxt 和 buefy 开箱即用,我只想显示一个带有虚拟数据的表格。但是没有任何东西被渲染。我从 Buefy 文档中复制了代码。

//TableComponent
<template>
  <b-table :data="tableData" :columns="columns" />
</template>


<script>
    export default {
   data() {
    return {
        tableData: [
            {
                . . .
            }
        ],
        columns: [
            {
            ...
                      }
        ]
    }
   }
   }
</script>

//Parent Component
 <div>
<TableComponent />
 <div>
4

0 回答 0