Replace app configure views
This commit is contained in:
@@ -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