wxs.ts 237 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7 8 9
import { ComponentInternalInstance, ComponentOptions } from 'vue'
import { initModules } from './renderjs'

export function initWxs(
  { $wxs }: ComponentOptions,
  instance: ComponentInternalInstance
) {
  initModules(instance, $wxs)
}