2020-01-19 20:23:06 +01:00
|
|
|
<template>
|
|
|
|
<div class="content">
|
2020-01-20 22:22:32 +01:00
|
|
|
<h1>Import your data from other services to Vikunja</h1>
|
2020-01-19 20:23:06 +01:00
|
|
|
<p>Click on the logo of one of the third-party services below to get started.</p>
|
|
|
|
<div class="migration-services-overview">
|
2020-06-17 22:24:37 +02:00
|
|
|
<router-link :to="{name: 'migrate.service', params: {service: m}}" v-for="m in availableMigrators" :key="m">
|
2020-05-08 20:43:51 +02:00
|
|
|
<img :src="`/images/migration/${m}.png`" :alt="m"/>
|
|
|
|
{{ m }}
|
2020-01-19 20:23:06 +01:00
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2020-06-17 22:24:37 +02:00
|
|
|
name: 'migrate.service',
|
2020-07-07 22:07:13 +02:00
|
|
|
mounted() {
|
|
|
|
this.setTitle('Import your data to Vikunja')
|
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
computed: {
|
|
|
|
availableMigrators() {
|
|
|
|
return this.$store.state.config.availableMigrators
|
|
|
|
},
|
|
|
|
},
|
2020-01-19 20:23:06 +01:00
|
|
|
}
|
|
|
|
</script>
|