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

18 lines
257 B
Vue

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