frontend/src/components/migrator/migrate.vue
konrad 9b232c7d4f Add Wunderlist migration (#46)
Complete migration flow

Add migration in progress animation

Add handling wunderlist migration flow

Basic migration init structure

Add migrator structure

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: vikunja/frontend#46
2020-01-19 19:23:06 +00:00

19 lines
461 B
Vue

<template>
<div class="content">
<h1>Migrate 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>