File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import * as nodeOps from './node-ops'
4
4
import { createPatchFunction } from 'core/vdom/patch'
5
- import baseModules from 'core/vdom/modules/index'
5
+ // import baseModules from 'core/vdom/modules/index'
6
+ import ref from 'core/vdom/modules/ref'
6
7
// const platformModules = []
7
8
// import platformModules from 'web/runtime/modules/index'
8
9
9
10
// the directive module should be applied last, after all
10
11
// built-in modules have been applied.
11
12
// const modules = platformModules.concat(baseModules)
13
+ const modules = [ ref ]
12
14
13
- export const corePatch : Function = createPatchFunction ( { nodeOps, modules : baseModules } )
15
+ export const corePatch : Function = createPatchFunction ( { nodeOps, modules } )
14
16
15
17
export function patch ( ) {
16
18
corePatch . apply ( this , arguments )
You can’t perform that action at this time.
0 commit comments