Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 437 Bytes

组件.md

File metadata and controls

25 lines (14 loc) · 437 Bytes

目录:src/ui/widget

说明:

  • 每一个widget是一个vue component。

  • 每一个widget会以“widget-”为前缀注册到全局。

  • widget可以是多个实例。

  • widget源代码中不能通过require的方式引用外部代码。

  • widget源代码中不能再引用其他widget作为子component。

  • 示例:

<div class="list">
    <widget-demo></widget-demo>
    <widget-demo></widget-demo>
</div>