index.vue 432 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="index">
  3. <el-row>
  4. <el-col :span="24">
  5. <p>index</p>
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. metaInfo() {
  13. return { title: this.$route.meta.title };
  14. },
  15. name: 'index',
  16. props: {},
  17. components: {},
  18. data: function() {
  19. return {};
  20. },
  21. created() {},
  22. methods: {},
  23. computed: {},
  24. watch: {},
  25. };
  26. </script>
  27. <style lang="less" scoped></style>