refactor: Move @n8n/chat package to frontend/@n8n (no-changelog) (#13425)

This commit is contained in:
Alex Grozav
2025-02-24 21:19:51 +02:00
committed by GitHub
parent 06572efad3
commit 37d4b00e3f
80 changed files with 289 additions and 323 deletions

View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
import PoweredBy from '@n8n/chat/components/PoweredBy.vue';
import { useI18n } from '@n8n/chat/composables';
const { t, te } = useI18n();
</script>
<template>
<div class="chat-get-started-footer">
<div v-if="te('footer')">
{{ t('footer') }}
</div>
<PoweredBy />
</div>
</template>
<style lang="scss">
.chat-get-started-footer {
padding: var(--chat--spacing);
}
</style>