Footer.vue 651 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="mta-footer">
  3. <p>{{footText }}</p>
  4. </div>
  5. </template>
  6. <script>
  7. import { mapGetters } from 'vuex';
  8. export default {
  9. name: 'Footer',
  10. computed: {
  11. footText() {
  12. let str = 'Copyright © 2019 llisoft.com All rights reserved 沈阳久创锐康公司 版权所有 辽ICP备09022904号-19';
  13. return this.getReplaceContext && this.getReplaceContext.footText ? this.getReplaceContext.footText : str;
  14. },
  15. ...mapGetters([
  16. 'getReplaceContext',
  17. ]),
  18. },
  19. };
  20. </script>