Read frames from file and add to table.

This commit is contained in:
Alf
2020-11-10 19:58:11 -08:00
parent 623f1dad7c
commit 0d64e128a2
4 changed files with 150 additions and 16 deletions

View File

@@ -28,7 +28,9 @@
</div>
</b-tab>
<b-tab title="Streams" class="mt-2" disabled></b-tab>
<b-tab title="Frames" class="mt-2" disabled></b-tab>
<b-tab title="Frames" class="mt-2" lazy>
<Frames />
</b-tab>
</b-tabs>
</div>
</div>
@@ -36,11 +38,13 @@
<script>
import Overview from './Overview.vue';
import Frames from './Frames.vue';
export default {
name: 'File',
components: {
Overview,
Frames,
},
data() {
return {
@@ -83,11 +87,4 @@ export default {
}
}
}
</script>
<style scoped>
.tree-view {
overflow: auto;
height: 60vh;
}
</style>
</script>