mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
12 lines
176 B
Smarty
12 lines
176 B
Smarty
|
|
import { reactive } from 'vue';
|
|
|
|
let initState;
|
|
const setModelState = (val) => {
|
|
initState = val;
|
|
};
|
|
|
|
export default () => reactive(initState);
|
|
|
|
export { setModelState };
|