Convert Section.vue to composition api

This commit is contained in:
Johannes Zellner
2025-05-06 19:00:26 +02:00
parent 91ba2a9282
commit 6bbb968128
+8 -12
View File
@@ -1,15 +1,12 @@
<script>
<script setup>
export default {
name: 'Section',
props: {
title: String,
padding: {
type: Boolean,
default: true,
}
}
};
defineProps({
title: String,
padding: {
type: Boolean,
default: true,
},
});
</script>
@@ -26,7 +23,6 @@ export default {
</div>
</template>
<style>
.section {