load-error.vue 472 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="component-error">组件加载失败,可尝试强制刷新页面(Ctrl+F5)或点击左侧组件标题进行重新加载</div>
  3. </template>
  4. <script>
  5. export default {
  6. data () {
  7. return {};
  8. },
  9. mounted () {
  10. this.$emit('errored');
  11. }
  12. };
  13. </script>
  14. <style lang="less" scoped>
  15. .component-error {
  16. height: 100px;
  17. text-align: center;
  18. line-height: 100px;
  19. background: #f1f1f1;
  20. color: #333;
  21. }
  22. </style>