Started code review + some fixes (unfinished)
[vchess.git] / client / src / views / About.vue
CommitLineData
92a523d1 1<template lang="pug">
7aa548e7
BA
2main
3 .row
4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
72ccbd67 5 div(v-html="content")
92a523d1
BA
6</template>
7
7dec8d87
BA
8<script>
9import { store } from "@/store";
7dec8d87 10export default {
6808d7a1 11 name: "my-about",
fcbc92c2
BA
12 computed: {
13 content: function() {
6808d7a1
BA
14 return (
15 require("raw-loader!@/translations/about/" + store.state.lang + ".pug")
16 // Next two lines fix a weird issue after last update (2019-11)
17 .replace(/\\[n"]/g, " ")
18 .replace('module.exports = "', "")
19 .replace(/"$/, "")
20 );
21 }
22 }
7dec8d87
BA
23};
24</script>
bbce9c10
BA
25
26<style lang="sass">
27#links
28 margin: var(--universal-margin);
29 & > a
30 display: block
31</style>