UNPKG

@puke3615/node-red-contrib-wechat

Version:

一个支持微信的Node-Red插件

29 lines (27 loc) 761 B
<script type="text/javascript"> RED.nodes.registerType('wechat', { category: 'config', color: '#04BE02', defaults: { name: {value: ''}, }, inputs: 1, outputs: 1, icon: "file.svg", label: function () { return this.name || '微信配置'; } }); </script> <script type="text/html" data-template-name="wechat"> <div class="form-row"> <label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label> <input type="text" id="node-config-input-name" placeholder="Name"> </div> </script> <script type="text/html" data-help-name="wechat"> <p>微信配置节点</p> <p> 使用该节点登录微信 </p> </script>