22 lines
290 B
Vue
22 lines
290 B
Vue
<template>
|
|
<div class="px-6 py-4 grid gap-3 md:flex md:justify-between md:items-center border-t border-gray-200 dark:border-gray-700">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "AdminIndexFooter",
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |