zhangzengfei
2023-08-04 e186099617a3f0185c5b9228605a207d20c0d881
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
  <div id="app">
    <device-manager msg="PLC-Reader" />
  </div>
</template>
 
<script>
import DeviceManager from "./components/Device.vue"
 
export default {
  name: "App",
  components: {
    DeviceManager
  },
  mounted() {
    console.log(this)
  }
}
</script>
 
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 10px;
}
</style>