mealie/frontend/plugins/globals.ts
Hayden c0dd07f9e7
Feature/infinite scroll (#719)
* feat(frontend):  lazy-load all recipes page

* feat(frontend):  enable runtime theme through env-variables

* docs(docs): 📝 update v1 changelog

* bump version

Co-authored-by: Hayden <hay-kot@pm.me>
2021-10-03 14:07:18 -08:00

8 lines
209 B
TypeScript

import { icons } from "~/utils/icons";
// eslint-disable-next-line no-empty-pattern
export default ({}, inject: any) => {
// Inject $hello(msg) in Vue, context and store.
inject("globals", { icons });
};