mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
25 lines
450 B
Vue
25 lines
450 B
Vue
<template>
|
|
<div :class="$style.container">
|
|
<GoogleAuthButton v-if="isGoogleOAuthType" />
|
|
<n8n-button
|
|
v-else
|
|
:label="$locale.baseText('credentialEdit.oAuthButton.connectMyAccount')"
|
|
size="large"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import GoogleAuthButton from './GoogleAuthButton.vue';
|
|
|
|
defineProps<{
|
|
isGoogleOAuthType: boolean;
|
|
}>();
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
.container {
|
|
display: inline-block;
|
|
}
|
|
</style>
|