mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 12:56:41 +00:00
18 lines
457 B
Vue
18 lines
457 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
current: number
|
|
}>()
|
|
|
|
const { syncConfigForm } = useSyncStoreOrThrow()
|
|
</script>
|
|
|
|
<template>
|
|
<a-steps class="pointer-events-none" :current="current" size="small">
|
|
<a-step title="Sync Category" />
|
|
<a-step title="Sync Settings" />
|
|
<a-step title="Sources" />
|
|
<a-step v-if="syncConfigForm.sync_category === 'custom'" title="Destination Schema" />
|
|
<a-step title="Review" />
|
|
</a-steps>
|
|
</template>
|