Hangar/frontend/pages/linkout.vue
2021-02-13 17:45:22 +01:00

26 lines
716 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, Vue } from 'nuxt-property-decorator';
@Component
export default class LinkoutPage extends Vue {
get target() {
return this.$route.query.remoteUrl;
}
}
</script>
<style lang="scss" scoped></style>