mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-02 04:00:36 +00:00
25 lines
453 B
Vue
25 lines
453 B
Vue
|
|
<template lang="pug">
|
||
|
|
.row
|
||
|
|
.col-6.offset-3
|
||
|
|
.page-header
|
||
|
|
h1 {{ $t('overview') }}
|
||
|
|
p {{ $t('needTips') }}
|
||
|
|
|
||
|
|
div(v-for='step in stepsNum')
|
||
|
|
h3 {{ $t('step'+step) }}
|
||
|
|
// @TODO: add markdown
|
||
|
|
p(v-html="$t('webStep'+step+'Text')")
|
||
|
|
hr
|
||
|
|
p(v-html="$t('overviewQuestions')")
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
stepsNum: ['1', '2', '3'],
|
||
|
|
};
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|