文件名称:minimalist-store:极简商店,尽可能多地使用本机对象功能+代理
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-14 01:45:52
JavaScript
极简商店,尽可能多地使用本机对象功能+代理 使用范例 import createModel from 'minimalist-store' ; const store = { name : 'Diel' , age : 10 , get doubleAge ( ) { return this . age * 2 ; } } ; const model = createModel ( store ) ; // randomly generating a new `age` value each 400ms, just to test setInterval ( ( ) => { model . set = { age : Math . random ( ) } ; } , 400 ) ; // add a subscribe by fields that you
【文件预览】:
minimalist-store-main
----.gitignore(24B)
----package.json(240B)
----package-lock.json(79B)
----index.js(2KB)
----Readme.md(657B)
----example()
--------index.js(486B)
--------index.html(68B)