1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import {defineStore} from "pinia";
|
|
| export const useStore = defineStore('icrfStore',{
| state:()=>{
| return{
| //模式 1:USB 2Serial Port
| mode: 2,
| //设备编号
| deviceId:1,
| //串口号
| com: null,
| // 波特率
| serialBaud: 115200,
| //设备ID
| icdev:0,
| //是否连接
| isLJ:false
| }
| }
| })
|
|