12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24">
- <el-col :span="24" class="top">
- 头部assdfsfsdf
- </el-col>
- <el-col :span="24" class="main">
- nihaosdsdfsaedlfk
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'index',
- props: {},
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- .transition-box {
- margin-bottom: 10px;
- width: 200px;
- height: 100px;
- border-radius: 4px;
- background-color: #409eff;
- text-align: center;
- color: #fff;
- padding: 40px 20px;
- box-sizing: border-box;
- margin-right: 20px;
- }
- </style>
|