Hangar/frontend/pages/linkout.vue
MiniDigger 57f2d17cda make stylelint happy
Signed-off-by: MiniDigger <admin@minidigger.me>
2021-06-06 11:04:26 +02:00

35 lines
945 B
Vue

<template>
<v-col cols="12" md="6" offset-md="3">
<v-card>
<v-card-title>{{ $t('linkout.title') }}</v-card-title>
<v-card-text v-text="$t('linkout.text', [target])" />
<v-card-actions>
<v-btn @click="$router.back()">
{{ $t('linkout.abort') }}
</v-btn>
<v-btn :href="target">
{{ $t('linkout.continue') }}
</v-btn>
</v-card-actions>
</v-card>
</v-col>
</template>
<script lang="ts">
import { Component } from 'nuxt-property-decorator';
import { HangarComponent } from '~/components/mixins';
@Component({})
export default class LinkoutPage extends HangarComponent {
head() {
return this.$seo.head('Linkout', null, this.$route, null);
}
get target() {
return this.$route.query.remoteUrl;
}
}
</script>
<style lang="scss" scoped></style>