import slugify from 'slugify' /** * * * */ export default async function injectStore(name) { const StoreClass = await import('./../stores/' + name + '.js') const store = new StoreClass.default() return await store.find() }