mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 04:17:28 -08:00
12 lines
258 B
Vue
12 lines
258 B
Vue
|
<script lang="ts" setup>
|
||
|
import { i18n as locale } from '@/plugins/i18n';
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<n8n-heading size="2xlarge">{{ locale.baseText('settings.versionControl.title') }}</n8n-heading>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss" module></style>
|