This commit is contained in:
2024-03-01 20:28:14 +08:00
commit 076c21dc36
491 changed files with 84482 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import AdvMock from './AdvMock'
import mockCol from './MockCol/mockColReducer.js'
module.exports = function(){
this.bindHook('interface_tab', function(tabs){
tabs.advMock = {
name: '高级Mock',
component: AdvMock
}
})
this.bindHook('add_reducer', function(reducerModules){
reducerModules.mockCol = mockCol;
})
}