UNPKG

@allurereport/web-allure2

Version:

The static files for Allure Classic Report

10 lines (8 loc) 295 B
import LoaderView from "@/components/loader/LoaderView.js"; export function fetchAndShow(parent, region, collection, view, callback = () => {}) { parent.showChildView(region, new LoaderView()); collection.fetch().then(() => { parent.showChildView(region, view); callback(); }); }