12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- created() {
- this.$wst.initWebSocket();
- },
- mounted() {
- this.$wst.initWebSocket();
- },
- methods:{
- }
-
- }
- </script>
- <style>
- *{
- margin: 0;
- padding: 0;
- }
- body{
- font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
- }
- #app {
- height: 100%;
- width: 100%;
- }
- </style>
|