lrf402788946 5 năm trước cách đây
mục cha
commit
4d5780fa11
1 tập tin đã thay đổi với 33 bổ sung0 xóa
  1. 33 0
      src/views/home.vue

+ 33 - 0
src/views/home.vue

@@ -0,0 +1,33 @@
+<template>
+  <div id="home">
+    <iframe width="100%" style="height:99vh;" frameborder="0" src="/static/home.html"></iframe>
+  </div>
+</template>
+
+<script>
+import { mapState, createNamespacedHelpers } from 'vuex';
+export default {
+  name: 'home',
+  props: {},
+  components: {},
+  data: () => ({}),
+  created() {},
+  methods: {},
+  computed: {
+    ...mapState(['user']),
+    pageTitle() {
+      return `${this.$route.meta.title}`;
+    },
+  },
+  metaInfo() {
+    return { title: this.$route.meta.title };
+  },
+};
+</script>
+
+<style lang="less" scoped>
+.w_1200 {
+  width: 1200px;
+  margin: 0 auto;
+}
+</style>