赫艾前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
602 B

4 years ago
4 years ago
4 years ago
  1. <template>
  2. <div class="mod-home">
  3. <h3 style="font-size: 30px;margin-left: 20px">{{name}}</h3>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. name:this.$store.state.user.name+",欢迎使用!"
  11. }
  12. },
  13. methods: {
  14. languageRefresh(){
  15. let bool = localStorage.getItem('refresh')
  16. if (bool == '0'){
  17. this.$router.go(0);
  18. localStorage.setItem('refresh','1')
  19. }
  20. }
  21. },
  22. beforeMount() {
  23. this.languageRefresh()
  24. }
  25. }
  26. </script>
  27. <style>
  28. .mod-home {
  29. line-height: 1.5;
  30. }
  31. </style>