Hangar/frontend/pages/linkout.vue
2021-03-20 19:06:09 -07:00

27 lines
778 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 {
get target() {
return this.$route.query.remoteUrl;
}
}
</script>
<style lang="scss" scoped></style>