myCRM/assets/js/views/DealList.vue
2025-11-08 10:26:44 +01:00

18 lines
241 B
Vue

<template>
<div class="deal-list">
<h2>Deals</h2>
<p>Deal-Pipeline wird hier angezeigt...</p>
</div>
</template>
<script setup>
</script>
<style scoped lang="scss">
.deal-list {
h2 {
margin-bottom: 1.5rem;
}
}
</style>