5. 完整示例代码

    index.html

    只列出使用 的部分。

    1. <body>
    2. <!-- 其他 DOM 内容 -->
    3. <mip-shell-example mip-shell>
    4. <script type="application/json">
    5. {
    6. "routes": [
    7. {
    8. "pattern": "/use-shell.html",
    9. "meta": {
    10. "show": true,
    11. "logo": "https://gss0.bdstatic.com/5bd1bjqh_Q23odCf/static/wiseindex/img/favicon64.ico"
    12. },
    13. "view": {
    14. "isIndex": true
    15. }
    16. }
    17. },
    18. {
    19. "pattern": "*",
    20. "header": {
    21. "title": "其他页面"
    22. }
    23. }
    24. }
    25. ]
    26. }
    27. </script>
    28. </mip-shell>
    29. <script src="https://c.mipcdn.com/static/v2/mip.js"></script>
    30. </body>