index.vue 808 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div id="index">
  3. <div class="w_0100">
  4. <div class="w_1200">
  5. <div class="dynamicmain">
  6. <el-col :span="12">展示成果</el-col>
  7. <el-col :span="12">达成意愿</el-col>
  8. <el-col :span="12">洽谈合作</el-col>
  9. <el-col :span="12">发布需求</el-col>
  10. </div>
  11. </div>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. import { mapState, createNamespacedHelpers } from 'vuex';
  17. export default {
  18. name: 'index',
  19. props: {},
  20. components: {},
  21. data: () => {
  22. return {};
  23. },
  24. created() {},
  25. methods: {},
  26. computed: {
  27. ...mapState(['user']),
  28. pageTitle() {
  29. return `${this.$route.meta.title}`;
  30. },
  31. },
  32. metaInfo() {
  33. return { title: this.$route.meta.title };
  34. },
  35. };
  36. </script>
  37. <style lang="less" scoped></style>