mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<template>
|
|
<div class="container-fluid static-view">
|
|
<div class="row">
|
|
<div class="col-md-6 offset-3">
|
|
<h1>{{ $t('overview') }}</h1>
|
|
<p>{{ $t('needTips') }}</p>
|
|
<div
|
|
v-for="step in stepsNum"
|
|
:key="step"
|
|
>
|
|
<h3>{{ $t(`step${step}`) }}</h3>
|
|
<p v-markdown="$t(`webStep${step}Text`, stepVars[step])"></p>
|
|
<hr>
|
|
</div>
|
|
<p>
|
|
<span v-html="$t('overviewQuestionsRevised')"></span>
|
|
<a
|
|
target="_blank"
|
|
@click.prevent="openBugReportModal(true)"
|
|
>
|
|
{{ $t('askQuestion') }}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang='scss'>
|
|
@import '~@/assets/scss/static.scss';
|
|
</style>
|
|
|
|
<style lang='scss' scoped>
|
|
.container-fluid {
|
|
margin-top: 56px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import markdownDirective from '@/directives/markdown';
|
|
import reportBug from '@/mixins/reportBug.js';
|
|
|
|
export default {
|
|
directives: {
|
|
markdown: markdownDirective,
|
|
},
|
|
mixins: [reportBug],
|
|
data () {
|
|
return {
|
|
stepsNum: ['1', '2', '3'],
|
|
stepVars: {
|
|
1: {},
|
|
2: {},
|
|
3: {
|
|
partyUrl: '/party',
|
|
equipUrl: '/inventory/equipment',
|
|
shopUrl: '/shops/market',
|
|
},
|
|
},
|
|
};
|
|
},
|
|
};
|
|
</script>
|