XmlTagElement

  • 分析模版标签

使用示例

  1. useReducer({
  2. XmlTagElement (node,store ) {
  3. // You can process xmlTag here
  4. let {
  5. tagAst, //分析的节点
  6. num, //用于调用子原子时加到key值上
  7. projectPath, //页面小程序根路径,pages/xx/xx
  8. deep, //节点深度
  9. refRender //创建自定义组件节点
  10. } = node.body;
  11. }
  12. })