summaryrefslogtreecommitdiff
path: root/docs/guide/components/table.md
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-11-12 02:00:15 +0300
committerDerick Montague <derick.montague@ibm.com>2020-11-16 20:13:13 +0300
commitd35132d82d68acbbf83d95add7290f769d3b2436 (patch)
treeb2dbdaca3de10c0ab7b58b2d2dd5ea21f0a3d6df /docs/guide/components/table.md
parentff8c5cd23feb42dc90424e44af6275efb12c600d (diff)
downloadwebui-vue-d35132d82d68acbbf83d95add7290f769d3b2436.tar.xz
Update VuePress configuration
We are moving away from importing application components directly into the VuePress docs. We will document code snippets and add screenshots as a visual example. This commit removes all code and configurations that supported importing dynamic components into VuePress and added images in place of a working component example on the page. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I9a75c5d51de8b6d941e4df7ae977d78c043d36e1
Diffstat (limited to 'docs/guide/components/table.md')
-rw-r--r--docs/guide/components/table.md32
1 files changed, 4 insertions, 28 deletions
diff --git a/docs/guide/components/table.md b/docs/guide/components/table.md
index ddb1413f..af464e46 100644
--- a/docs/guide/components/table.md
+++ b/docs/guide/components/table.md
@@ -17,29 +17,8 @@ There are a few required properties to maintain consistency across the applicati
- `show-empty` *(required if table data is generated dynamically)* - shows an empty message if there are no items in the table
- `empty-text` *(required if table data is generated dynamically)* - the translated empty message
-<br/>
-
-<b-table
- :fields="['Name', 'Age', 'Color']"
- :items="[
- {Name: 'Babe', Age: '3 years', Color: 'white, orange, grey' },
- {Name: 'Grey Boy', Age: '4 months', Color: 'grey' }
- ]"
- hover
- head-variant="light"
- table-variant="light"
-/>
-
-<b-table
- show-empty
- hover
- :fields="['Name', 'Age', 'Color']"
- head-variant="light"
- table-variant="light"
- empty-text="No items available"
-/>
-
-<br/>
+![Basic table example](/table.png)
+![Basic empty table example](/table-empty.png)
```vue
<template>
@@ -95,7 +74,8 @@ To enable table sort, include `sortable: true` in the fields array for sortable
- `no-sort-reset`
- `sort-icon-left`
-<br/>
+![Table sort example](/table-sort.png)
+
```vue
<template>
@@ -137,10 +117,6 @@ export default {
</script>
```
-<br />
-
-<BmcTable />
-
<!-- ## Expandable row -->
<!-- ## Pagination -->
<!-- ## Row actions -->