UNPKG

@ou-imdt/create

Version:

Command line tool to create team boilerplate.

17 lines (14 loc) 538 B
import '@/css/styles.css'; import { setupDefaultResizer } from '@ou-imdt/utils'; import localData from './data/data.json'; import { store } from './store/store.js'; setupDefaultResizer(); await store.fetchExternalData(); // Addie please test below code let data = store.externalConfigurationData && Object.keys(store.externalConfigurationData).length > 0 ? store.externalConfigurationData : store.urlParams.data ? await fetch(store.urlParams.data) .then(r => r.json()) .then(content => content) : localData;