This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/migrator/migrate.vue
konrad d61a7511da
All checks were successful
continuous-integration/drone/push Build is passing
Migration Improvements (#47)
Make "migration" "import everywhere"

Add checking for migration status before trying to migrate

Add get status from migrations

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #47
2020-01-20 21:22:32 +00:00

19 lines
460 B
Vue

<template>
<div class="content">
<h1>Import your data from other services to Vikunja</h1>
<p>Click on the logo of one of the third-party services below to get started.</p>
<div class="migration-services-overview">
<router-link :to="{name: 'migrateWunderlist'}">
<img src="/images/migration/wunderlist.png" alt="Wunderlist"/>
Wunderlist
</router-link>
</div>
</div>
</template>
<script>
export default {
name: 'migrate'
}
</script>