Follow upstream recommendation to have html templates below script in .vue files

This commit is contained in:
Johannes Zellner
2025-01-19 12:00:22 +01:00
parent 0280059c13
commit dfb3285e18
21 changed files with 1008 additions and 1021 deletions
+11 -10
View File
@@ -1,3 +1,14 @@
<script>
export default {
name: 'Section',
props: {
title: String,
}
};
</script>
<template>
<div>
<h2 class="section-header">
@@ -11,16 +22,6 @@
</div>
</template>
<script>
export default {
name: 'Section',
props: {
title: String,
}
};
</script>
<style scoped>