Added Tasks Page, Routing, SideBar entry, and API methods.

This commit is contained in:
rocketdebris 2026-01-12 15:50:56 -05:00
parent 909dab62b5
commit 94e1c4dfed
5 changed files with 359 additions and 1 deletions

View file

@ -13,6 +13,7 @@ import Client from "./components/pages/Client.vue";
import Property from "./components/pages/Property.vue";
import Estimate from "./components/pages/Estimate.vue";
import Job from "./components/pages/Job.vue";
import Tasks from "./components/pages/Tasks.vue";
const routes = [
{
@ -25,6 +26,7 @@ const routes = [
{ path: "/property", component: Property },
{ path: "/jobs", component: Jobs },
{ path: "/job", component: Job },
{ path: "/tasks", component: Tasks },
{ path: "/invoices", component: Invoices },
{ path: "/estimates", component: Estimates },
{ path: "/estimate", component: Estimate },