documentation - rules and conventions, creating a page
This commit is contained in:
parent
80f72e7dc9
commit
fd1ea11170
4 changed files with 97 additions and 3 deletions
11
src/views/Example.vue
Normal file
11
src/views/Example.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<h1>{{ data.content.title }}</h1>
|
||||
<!-- ... -->
|
||||
</template>
|
||||
<script setup>
|
||||
const { data } = defineProps({
|
||||
data: Object,
|
||||
});
|
||||
|
||||
// ....
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue