Skip to content
Snippets Groups Projects
Commit b3e5bae3 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Use virtual tables

parent 35e41f4f
No related branches found
No related tags found
1 merge request!13Resolve "Add refseq table results"
Pipeline #112350 failed
// From https://github.com/observablehq/plot/ examples
import * as Plot from "@observablehq/plot"; import * as Plot from "@observablehq/plot";
import { h, withDirectives } from "vue"; import { h, withDirectives } from "vue";
......
...@@ -63,14 +63,15 @@ watchEffect(async () => {}); ...@@ -63,14 +63,15 @@ watchEffect(async () => {});
<v-card flat color="transparent"> <v-card flat color="transparent">
<v-toolbar><v-toolbar-title> REFSEQ</v-toolbar-title> </v-toolbar> <v-toolbar><v-toolbar-title> REFSEQ</v-toolbar-title> </v-toolbar>
<v-card-content> <v-card-content>
<v-data-table <v-data-table-virtual
v-model="selected" v-model="selected"
:headers="headers" :headers="headers"
:items="sanitizedRefseq" :items="sanitizedRefseq"
:item-value="itemValue" :item-value="itemValue"
height="800"
show-select show-select
class="elevation-1" class="elevation-1"
></v-data-table> ></v-data-table-virtual>
</v-card-content> </v-card-content>
<v-card-content> <v-card-content>
<v-row> <v-row>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment