mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +03:00
f2651d58e4
- Closes #7916 # Important Notes None
32 lines
740 B
Vue
32 lines
740 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
import TableVisualization from '@/components/visualizations/TableVisualization.vue'
|
|
|
|
const data = ref<any>({
|
|
type: 'Matrix',
|
|
// eslint-disable-next-line camelcase
|
|
column_count: 5,
|
|
// eslint-disable-next-line camelcase
|
|
all_rows_count: 10,
|
|
json: Array.from({ length: 10 }, (_, i) => Array.from({ length: 5 }, (_, j) => `${i},${j}`)),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Table"
|
|
group="visualizations"
|
|
:layout="{ type: 'grid', width: 400 }"
|
|
autoPropsDisabled
|
|
>
|
|
<div style="height: 322px">
|
|
<TableVisualization :data="data" />
|
|
</div>
|
|
|
|
<template #controls>
|
|
<HstJson v-model="data" title="data" />
|
|
</template>
|
|
</Story>
|
|
</template>
|