#
luxiaotao1123
2024-08-14 a561c91ea99f11f2720e13dbe25b2eb32770bf8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { proxy } from 'valtio'
import { useProxy } from 'valtio/utils'
 
const store = proxy(
    {
        text: 'Hello World',
        shelfList: {},
        autoCruise: false,
        lookAt: { x: 0, y: 0, z: 0 },
        cruiseAgvNo: '2',
    }
);
 
export const useStore = () => useProxy(store);