13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { atom } from "recoil";
|
|
|
|
|
|
// 自定义tabbar状态
|
|
export const tabbarModel = atom({
|
|
key:"tabbarModel",
|
|
default:1
|
|
})
|
|
// 自定义tabbar携带参数
|
|
export const tabbarParamModel = atom({
|
|
key:"tabbarParamModel",
|
|
default:""
|
|
}) |