测试禁用加载路由
创建该项目的目的是演示将loading操作添加到您的应用程序路由(或从技术上讲是任何级别)将允许该操作实现控制是否输入了加载状态或子状态。
基本实现是:
export default class ApplicationRoute extends Route {
@ action loading ( ) {
// for example, you can decide to use loading states or not based on the
// query string
if ( ! window . location . search . includes ( 'skipLoading' ) ) {
return true ;
}
}
}
在此演示中,导航应具有以下结果:
导航到/posts/ ,路线