astra 安装
编译会报错 Could not find a package configuration file provided by "libuvc" with anyof the following names:libuvcConfig.cmakelibuvc-config.cmake解决方法:
git clone https://github.com/libuvc/libuvc
cd libuvc
mkdir build
cd build
cmake…
vuex方案
安装vuex4.x
两个重要变动: 去掉了构造函数Vuex,而使用createStore创建仓库 为了配合composition api,新增useStore函数获得仓库对象;获取路由对象使用useRouter
global state
由于vue3的响应式系统本身可以脱离…