documentation - rules and conventions, creating a page

This commit is contained in:
isUnknown 2024-07-11 14:30:32 +02:00
parent 80f72e7dc9
commit fd1ea11170
4 changed files with 97 additions and 3 deletions

11
src/views/Example.vue Normal file
View file

@ -0,0 +1,11 @@
<template>
<h1>{{ data.content.title }}</h1>
<!-- ... -->
</template>
<script setup>
const { data } = defineProps({
data: Object,
});
// ....
</script>