UNPKG

@mpxjs/webpack-plugin

Version:

mpx compile core

24 lines (22 loc) 483 B
const TAG_NAME = 'sticky-section' module.exports = function ({ print }) { return { test: TAG_NAME, android (tag, { el }) { el.isBuiltIn = true return 'mpx-sticky-section' }, ios (tag, { el }) { el.isBuiltIn = true return 'mpx-sticky-section' }, harmony (tag, { el }) { el.isBuiltIn = true return 'mpx-sticky-section' }, web (tag, { el }) { el.isBuiltIn = true return 'mpx-sticky-section' } } }