lp-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
36 lines (27 loc) • 807 B
JavaScript
/**
* Wux Weapp 1.0.19
* 一套组件化、可复用、易扩展的微信小程序 UI 组件库
*
*
* Copyright 2017-2023 lingping
*
* Released under the MIT License
*
* Released on: 2023-5-16
*/
/**
* 使用选择器选择组件实例节点,返回匹配到的第一个组件实例对象
* @param {String} selector 节点选择器
* @param {Object} ctx 页面栈或组件的实例,默认为当前页面栈实例
*/
export const getCtx = (selector, ctx = getCurrentPages()[getCurrentPages().length - 1]) => {
const componentCtx = ctx.selectComponent(selector)
if (!componentCtx) {
throw new Error('无法找到对应的组件,请按文档说明使用组件')
}
return componentCtx
}
const version = '1.0.19'
export {
version
}