feat: now respect codestyle
All checks were successful
CI / build (push) Successful in 4s

This commit is contained in:
Pierre Tellier
2025-02-09 15:59:30 +01:00
parent a859871265
commit 645a10477d
16 changed files with 1764 additions and 312 deletions

View File

@ -3,21 +3,19 @@
<div class="project-header">
<h2>{{ projectName }}</h2>
</div>
</div>
</template>
<script lang="ts">
import type {PropType} from "vue";
import type { PropType } from "vue";
export default {
name: 'ProjectComponent',
name: "ProjectComponent",
props: {
projectName: {
type: Object as PropType<string>,
required: true
type: Object as PropType<string>,
required: true,
},
}
}
</script>
},
};
</script>