We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e3b53 commit 9a8a5bdCopy full SHA for 9a8a5bd
src/platforms/mp/runtime/patch.js
@@ -2,15 +2,15 @@
2
3
import * as nodeOps from './node-ops'
4
import { createPatchFunction } from 'core/vdom/patch'
5
-// import baseModules from 'core/vdom/modules/index'
+import baseModules from 'core/vdom/modules/index'
6
// const platformModules = []
7
// import platformModules from 'web/runtime/modules/index'
8
9
// the directive module should be applied last, after all
10
// built-in modules have been applied.
11
// const modules = platformModules.concat(baseModules)
12
13
-export const corePatch: Function = createPatchFunction({ nodeOps, modules: [] })
+export const corePatch: Function = createPatchFunction({ nodeOps, modules: baseModules })
14
15
export function patch () {
16
corePatch.apply(this, arguments)
0 commit comments