Replace app configure views

This commit is contained in:
Johannes Zellner
2025-02-20 10:54:43 +01:00
parent a669144d16
commit f52a330b16
5 changed files with 183 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export default {
<template>
<div class="section">
<h2 class="section-header">
{{ title }}
<slot name="header-title">{{ title }}</slot>
<div><slot name="header-buttons"></slot></div>
</h2>
<hr class="section-divider"/>
+16
View File
@@ -0,0 +1,16 @@
<script setup>
import { onMounted } from 'vue';
const props = defineProps([ 'app' ]);
onMounted(() => {
console.log(props.app)
});
</script>
<template>
<div>
Info {{ app.id }}
</div>
</template>