WONDER
WONDER
Is this feature in Watch JS? for example: var a = { attr1: a, attr2: b } watch(a, ['attr1', 'attr2'], function(){ }) a.attr1 = aa; a.attr2 = bb; I want...
Can see nothing but only black screen, no other actions can do. just follow the steps with ReadMe. dfx version: dfx 0.7.0 browser: chrome 90.0.4430.212 operating system: macOS 10.15.7 ...
在使用fis3的时候,有时候需要对打包阶段之后的代码进一步加工,如下图就是allInOne之后的样子  现在的需求是对这个文件我想复用单文件编译的那一套,比如: 改为hash,设置release路径,uglify-js,内嵌等等操作,简单的说就是对打包后的文件再进行一次单文件编译。 不然的话,按我现在的理解能力,只能在打包插件中再实现一遍上述操作。感觉这样会非常不优雅~ 不知道有没有好的解决办法~~