Vuepress: how to document complex tables

Created on 16 Feb 2019  路  2Comments  路  Source: vuejs/vuepress

I have to create a complex table. To maintain that with markdown is not very convenient.
I thought a json file would be better and use this Vuetable-2.
I am a vuepress noob and have no idea how to implement vuetable in vuepress.

Can someone help me to implement vuetable, or suggest an other idea?

Most helpful comment

Got it to work. Maybe this helps some other noobs.

Install Vuetable with npm install -D vuetable-2@next or yarn add -D vuetable-2@next

Create a file .vuepress/components/Vuetable.vue in your root project folder.

<template>
  <vuetable ref="vuetable"
    api-url="http://openlibrary.org/people/george08/lists.json"
    :fields="['name', {name: 'last_update', title: 'Last Update'}, 'edition_count']"
    data-path="entries"
    pagination-path=""
  ></vuetable>
</template>

<script>
import Vuetable from 'vuetable-2'

export default {
  components: {
    Vuetable
  }
}
</script>

Add <Vuetable/> to your .md file where the table should be displayed.

All 2 comments

This is the scope of markdown syntax itself, or you can create a vuetable plugin by yourself.

Got it to work. Maybe this helps some other noobs.

Install Vuetable with npm install -D vuetable-2@next or yarn add -D vuetable-2@next

Create a file .vuepress/components/Vuetable.vue in your root project folder.

<template>
  <vuetable ref="vuetable"
    api-url="http://openlibrary.org/people/george08/lists.json"
    :fields="['name', {name: 'last_update', title: 'Last Update'}, 'edition_count']"
    data-path="entries"
    pagination-path=""
  ></vuetable>
</template>

<script>
import Vuetable from 'vuetable-2'

export default {
  components: {
    Vuetable
  }
}
</script>

Add <Vuetable/> to your .md file where the table should be displayed.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ynnelson picture ynnelson  路  3Comments

ederchrono picture ederchrono  路  3Comments

AMontagu picture AMontagu  路  3Comments

lileiseven picture lileiseven  路  3Comments

sankincn picture sankincn  路  3Comments