18 lines
241 B
Vue
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>
|