index.vue 527 B

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