docs.sheetjs.com/docz/docs/03-demos/04-grid/12-vtl.md

3.1 KiB

title pagination_prev pagination_next
vue3-table-lite demos/frontend/index demos/net/index

import current from '/version.js'; import CodeBlock from '@theme/CodeBlock';

:::note Tested Deployments

This demo was tested against vue3-table-lite 1.3.9, VueJS 3.3.10 and ViteJS 5.0.5 on 2023 December 04.

:::

The demo creates a site that looks like the screenshot below:

vue3-table-lite screenshot

Integration Details

Rows and Columns Bindings

vue3-table-lite presents two attribute bindings: an array of column metadata (columns) and an array of objects representing the displayed data (rows). Typically both are ref objects:

<script setup lang="ts">
import { ref } from "vue";
import VueTableLite from "vue3-table-lite/ts";

/* rows */
type Row = any[];
const rows = ref<Row[]>([]);

/* columns */
type Column = { field: string; label: string; };
const columns = ref<Column[]>([]);
</script>

<template>
  <vue-table-lite :columns="columns" :rows="rows"></vue-table-lite>
</template>

These can be mutated through the value property in VueJS lifecycle methods:

import { onMounted } from "vue";
onMounted(() => {
  columns.value = [ { field: "name", label: "Names" }];
  rows.value = [ { name: "SheetJS" }, { name: "VueJS" } ];
})

The most generic data representation is an array of arrays. To sate the grid, columns must be objects whose field property is the index converted to string:

import { ref } from "vue";
import { utils } from 'xlsx';

/* generate row and column data */
function ws_to_vtl(ws) {
  /* create an array of arrays */
  const rows = utils.sheet_to_json(ws, { header: 1 });

  /* create column array */
  const range = utils.decode_range(ws["!ref"]||"A1");
  const columns = Array.from({ length: range.e.c + 1 }, (_, i) => ({
    field: String(i), // vtl will access row["0"], row["1"], etc
    label: utils.encode_col(i), // the column labels will be A, B, etc
  }));

  return { rows, columns };
}

const rows = ref([]);
const columns = ref([]);

/* update refs */
function update_refs(ws) {
  const data = ws_to_vtl(ws);
  rows.value = data.rows;
  columns.value = data.columns;
}

In the other direction, a worksheet can be generated with aoa_to_sheet:

import { utils } from 'xlsx';

const rows = ref([]);

function vtl_to_ws(rows) {
  return utils.aoa_to_sheet(rows.value);
}

Demo

  1. Create a new ViteJS App using the VueJS + TypeScript template:
npm create vite@latest sheetjs-vtl -- --template vue-ts
cd sheetjs-vtl
  1. Install dependencies:

{\ npm i -S https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz vue3-table-lite@1.3.9}

  1. Download src/App.vue and replace the contents:
curl -L -o src/App.vue https://docs.sheetjs.com/vtl/App.vue
  1. Start the dev server:
npm run dev
  1. Load the displayed URL (typically http://localhost:5173) in a web browser.

When the page loads, it will try to fetch https://docs.sheetjs.com/pres.numbers and display the data. Click "Export" to generate a workbook.