File size: 257 Bytes
29658b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <script setup>
import BenchmarkDashboard from './components/BenchmarkDashboard.vue'
</script>
<template>
<div id="app">
<BenchmarkDashboard />
</div>
</template>
<style>
#app {
width: 100%;
min-height: 100vh;
background: #f9fafb;
}
</style>
|