mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-09 06:32:43 +08:00
c420e5dd33
Signed-off-by: MiniDigger <admin@minidigger.me> #382
31 lines
869 B
Vue
31 lines
869 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>
|