15 lines
233 B
Vue
15 lines
233 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: "index-view"
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="space-y-8 py-2">
|
|
<ImageGenerateCom />
|
|
<ClientOnly>
|
|
<ImageHistoryListCom />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|