index.ts 275 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6
import { App } from 'vue'

import { initLongPress } from './longPress'
import { initAppConfig } from './appConfig'

export function initView(app: App) {
fxy060608's avatar
fxy060608 已提交
7 8 9
  if (__UNI_FEATURE_LONGPRESS__) {
    initLongPress()
  }
fxy060608's avatar
fxy060608 已提交
10 11 12
  initAppConfig(app._context.config)
  // TODO wxs,behaviors
}