mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-30 23:30:38 +02:00
45 lines
866 B
Vue
45 lines
866 B
Vue
<script setup lang="ts">
|
|
import { useRouter } from 'vue-router';
|
|
import { VIEWS } from '@/constants';
|
|
|
|
const router = useRouter();
|
|
|
|
const navigateTo = () => {
|
|
void router.push({ name: VIEWS.TEMPLATES });
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="$style.wrapper" @click="navigateTo">
|
|
<font-awesome-icon :class="$style.icon" icon="arrow-left" />
|
|
<div :class="$style.text" v-text="$locale.baseText('template.buttons.goBackButton')" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
.icon,
|
|
.text {
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
margin-right: var(--spacing-2xs);
|
|
color: var(--color-foreground-dark);
|
|
font-size: var(--font-size-m);
|
|
}
|
|
|
|
.text {
|
|
font-size: var(--font-size-s);
|
|
line-height: var(--font-line-height-loose);
|
|
color: var(--color-text-base);
|
|
}
|
|
</style>
|