remove toolbox

This commit is contained in:
hay-kot 2021-04-10 14:53:02 -08:00
commit 717dd06e7e
3 changed files with 0 additions and 32 deletions

View file

@ -155,11 +155,6 @@ export default {
to: "/admin/meal-planner",
title: this.$t("meal-plan.meal-planner"),
},
{
icon: "mdi-toolbox",
to: "/admin/tool-box",
title: "Tool Box",
},
],
};
},

View file

@ -1,22 +0,0 @@
<template>
<v-container>
<v-app-bar color="primary" rounded dark>
<v-toolbar-title class="headline">
Hello World
</v-toolbar-title>
</v-app-bar>
<v-card class="mt-1">
<v-card-title>Hello World</v-card-title>
<v-card-text>
Hell From The Text Field
</v-card-text>
</v-card>
</v-container>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped>
</style>

View file

@ -7,7 +7,6 @@ import Profile from "@/pages/Admin/Profile";
import ManageUsers from "@/pages/Admin/ManageUsers";
import Settings from "@/pages/Admin/Settings";
import About from "@/pages/Admin/About";
import ToolBox from "@/pages/Admin/ToolBox";
import { store } from "../store";
export default {
@ -56,9 +55,5 @@ export default {
path: "about",
component: About,
},
{
path: "tool-box",
component: ToolBox,
},
],
};