Files
n8n_Demo/n8n-n8n-1.109.2/packages/frontend/@n8n/chat/src/components/GetStarted.vue
2025-09-08 04:48:28 +08:00

25 lines
512 B
Vue
Executable File

<script setup lang="ts">
import Button from '@n8n/chat/components/Button.vue';
import { useI18n } from '@n8n/chat/composables';
const { t } = useI18n();
</script>
<template>
<div class="chat-get-started">
<Button @click="$emit('click:button')">
{{ t('getStarted') }}
</Button>
</div>
</template>
<style lang="scss">
.chat-get-started {
padding-top: var(--chat--spacing);
padding-bottom: var(--chat--spacing);
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
</style>