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/views/migrator/Migrate.vue

27 lines
678 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 :key="m" :to="{name: 'migrate.service', params: {service: m}}" v-for="m in availableMigrators">
<img :alt="m" :src="`/images/migration/${m}.png`"/>
{{ m }}
</router-link>
</div>
</div>
</template>
<script>
export default {
name: 'migrate.service',
mounted() {
this.setTitle('Import your data to Vikunja')
},
computed: {
availableMigrators() {
return this.$store.state.config.availableMigrators
},
},
}
</script>