You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
478 B
16 lines
478 B
/* @flow */
|
|
|
|
import * as nodeOps from 'weex/runtime/node-ops'
|
|
import { createPatchFunction } from 'core/vdom/patch'
|
|
import baseModules from 'core/vdom/modules/index'
|
|
import platformModules from 'weex/runtime/modules/index'
|
|
|
|
// the directive module should be applied last, after all
|
|
// built-in modules have been applied.
|
|
const modules = platformModules.concat(baseModules)
|
|
|
|
export const patch: Function = createPatchFunction({
|
|
nodeOps,
|
|
modules,
|
|
LONG_LIST_THRESHOLD: 10
|
|
})
|
|
|