This repository has been archived on 2025-10-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FPGA_WebLab/src/views/Project/Debugger.vue

11 lines
215 B
Vue

<template>
<div>
<div class="card">
<WaveformDisplay />
</div>
</div>
</template>
<script setup lang="ts">
import WaveformDisplay from '@/components/WaveformDisplay/WaveformDisplay.vue';
</script>