1.0.5 • Published 3 years ago

vue-async-comp v1.0.5

Weekly downloads
47
License
ISC
Repository
github
Last release
3 years ago

vue-async-comp

A wrapper class to replace vue async component factory. Mainly help to re-try loading when a chunck fails to load.

The original vue async component factory does not offer a way to reload when chunck fail to load. The wrapper class can help reloading chunks.

Vue 异步组件加载器,主要用于当异步组件懒加载失败的时候,能够重新加载该chunk。Vue默认的异步组件工厂函数没有提供重试的方法,通过该插件可以方便的在chunk加载失败的时候,重新加载对应的chunk。

Install

npm i -S vue-async-comp

Usage

Routing

import RouteLoading from './RouteLoading.vue'
import RouteError from './RouteError.vue'
import { AsyncComp } from 'vue-async-comp'

const asyncComp = new AsyncComp({
  error: CompError,
  loading: CompLoading
})

const routes: RouteConfig[] = [
  {
    path: '/',
    component: asyncComp.load(import('../MyHome.vue'))
  }
]

const router = new VueRouter({
  routes,
  mode: 'history'
})

or along with vue-class-component

@Component({
  components: {
    MyComp: asyncComp.load(import('../MyComp.vue'))
  }
})
export default class Test extends Vue {
}

Chunk reloading

In Error.vue, emit reload event.

<template>
<div class="btn" @click="$emit('reload')">
  click to reload
</div>
</template>
1.0.5

3 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago