123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div id="index">
- <iframe width="100%" style="height:99vh" frameborder="0" src="/static/liveIndex.html"></iframe>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'index',
- props: {},
- components: {},
- data: () => {
- return {
- logo: require('@/assets/logo.png'),
- height: '1000px',
- };
- },
- mounted() {
- console.log('in function:');
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped></style>
|