index.vue 574 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div id="index">
  3. <el-row>
  4. <el-col :span="24">
  5. 基本信息
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script>
  11. import { mapState, createNamespacedHelpers } from 'vuex';
  12. export default {
  13. name: 'index',
  14. props: {},
  15. components: {},
  16. data: function() {
  17. return {};
  18. },
  19. created() {},
  20. methods: {},
  21. computed: {
  22. ...mapState(['user']),
  23. pageTitle() {
  24. return `${this.$route.meta.title}`;
  25. },
  26. },
  27. metaInfo() {
  28. return { title: this.$route.meta.title };
  29. },
  30. };
  31. </script>
  32. <style lang="less" scoped></style>