App.vue 484 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. created() {
  10. this.$wst.initWebSocket();
  11. },
  12. mounted() {
  13. this.$wst.initWebSocket();
  14. },
  15. methods:{
  16. }
  17. }
  18. </script>
  19. <style>
  20. *{
  21. margin: 0;
  22. padding: 0;
  23. }
  24. body{
  25. font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
  26. }
  27. #app {
  28. height: 100%;
  29. width: 100%;
  30. }
  31. </style>