mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
16 lines
474 B
Vue
16 lines
474 B
Vue
<script setup lang="ts">
|
|
import TestsFilesContainer from './dashboard/TestsFilesContainer.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div h="full" flex="~ col">
|
|
<div p="3" h-10 flex="~ gap-2" items-center bg-header border="b base">
|
|
<div class="i-carbon-dashboard" />
|
|
<span pl-1 font-bold text-sm flex-auto ws-nowrap overflow-hidden truncate>Dashboard</span>
|
|
</div>
|
|
<div class="scrolls" flex-auto py-1>
|
|
<TestsFilesContainer />
|
|
</div>
|
|
</div>
|
|
</template>
|