mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
// 从事件对象中解析得到 componentId
|
|
// 需要在元素上声明 data-component-id
|
|
function extractComponentId(event = {}) {
|
|
const { dataset: { componentId } } = event.currentTarget || {};
|
|
return componentId;
|
|
}
|
|
|
|
module.exports = {
|
|
extractComponentId
|
|
};
|