19 lines
409 B
Vue
19 lines
409 B
Vue
<script setup lang="ts">
|
|
import ChatRctPrompt from '@/views/pages/chat/rct/view/CharRctPrompt.vue'
|
|
import ChatRctWizard from '@/views/pages/chat/rct/view/ChatRctWizard.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<VRow>
|
|
<!-- 👉 Chat RCT Wizard -->
|
|
<VCol cols="12">
|
|
<ChatRctWizard />
|
|
</VCol>
|
|
|
|
<!-- 👉 Chat RCT Prompt -->
|
|
<VCol cols="12">
|
|
<ChatRctPrompt />
|
|
</VCol>
|
|
</VRow>
|
|
</template>
|