1234567891011121314151617181920212223242526272829303132333435 |
- <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() {
- window.open('/static/home.html');
- },
- 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>
|