Styling, adjustments
[vchess.git] / client / src / views / About.vue
index 6b2f27c..36c01ef 100644 (file)
@@ -2,10 +2,30 @@
 main
   .row
     .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-      p TODO: give github URL, tell website story...
-      a(href="https://github.com/yagu0/vchess") contribute...
+      div(v-html="content")
 </template>
 
+<script>
+import { store } from "@/store";
+
+export default {
+  name: 'my-about',
+  data: function() {
+    return {
+      st: store.state,
+      content: "",
+    };
+  },
+  mounted: function() {
+    this.content =
+      require("raw-loader!@/translations/about/" + this.st.lang + ".pug")
+      // Next two lines fix a weird issue after last update (2019-11)
+      .replace(/\\[n"]/g, " ")
+      .replace('module.exports = "', '').replace(/"$/, "");
+  },
+};
+</script>
+
 <style lang="sass">
 .warn
   padding: 3px