23 lines
699 B
Vue
23 lines
699 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import Logo from "@/layouts/full/logo/Logo.vue";
|
|
</script>
|
|
|
|
// ===============================|| Ui Parent Card||=============================== //
|
|
<template>
|
|
<v-card elevation="10" >
|
|
<v-card-item>
|
|
<div class="d-sm-flex align-center justify-space-between">
|
|
<v-card-title class="text-h5"><Logo/></v-card-title>
|
|
<!-- <template v-slot:append> -->
|
|
<slot name="action"></slot>
|
|
<!-- </template> -->
|
|
</div>
|
|
</v-card-item>
|
|
<v-divider></v-divider>
|
|
<v-card-text>
|
|
<slot />
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|