浏览代码

删除 'src/views/Home.vue'

guhongwei 5 年之前
父节点
当前提交
31427e571c
共有 1 个文件被更改,包括 0 次插入33 次删除
  1. 0 33
      src/views/Home.vue

+ 0 - 33
src/views/Home.vue

@@ -1,33 +0,0 @@
-<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>