Files
habitica/website/client/components/static/overview.vue
T
Keith Holliday d677f5cfc7 New client statics (#8885)
* Moved static files over to new client

* Added statics, fixed translations and update styles

* More style and vue fixes

* Fixed line endings

* Fixed new stuff converasion and help links
2017-07-20 12:20:53 -06:00

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>