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