Replace app configure views
This commit is contained in:
@@ -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"/>
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user