Package Exports
- cml-component-parser
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cml-component-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
component 文件解析工具
安装
npm i cml-component-parser
使用
const Parser = require('cml-component-parser');
let parser = new Parser('path/to/interacefile');
let results = parser.getParseResults();
// results = {props: [{name: "display", valueType: "boolean"}], events: [{name:"refreshevent",paramsNum:1}]}