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