mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-02 10:13:35 -05:00
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>
This commit is contained in:
9
frontend/types/vue.d.ts
vendored
9
frontend/types/vue.d.ts
vendored
@@ -1,5 +1,10 @@
|
||||
import Vue from "vue";
|
||||
import "@nuxt/types";
|
||||
import { Icon } from "~/utils/icons/icon-type";
|
||||
|
||||
interface Globals {
|
||||
icons: Icon;
|
||||
}
|
||||
|
||||
declare module "vue/types/vue" {
|
||||
interface Vue {
|
||||
@@ -9,9 +14,9 @@ declare module "vue/types/vue" {
|
||||
|
||||
declare module "vue/types/options" {
|
||||
interface ComponentOptions<V extends Vue> {
|
||||
$globals?: any;
|
||||
$globals?: Globals;
|
||||
}
|
||||
interface ComponentOptions<V extends UseContextReturn> {
|
||||
$globals?: any;
|
||||
$globals?: Globals;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user