error.js 350 B

123456789101112131415161718192021
  1. define({
  2. name: "error",
  3. template: `
  4. <div class="error-component">
  5. <div class="el-icon-warning" ></div>
  6. 页面加载失败
  7. </div>
  8. `,
  9. style: `
  10. .error-component {
  11. margin-top:20px;
  12. text-align:center;
  13. font-size:16px;
  14. }
  15. .error-component > div {
  16. display:block;
  17. margin-bottom:10px;
  18. font-size:26px;
  19. }
  20. `
  21. })