From fb0c3b5c78864c16550d9e85919a96214eaffab9 Mon Sep 17 00:00:00 2001 From: Donely Gunn <32291941+itsMikeLowrey@users.noreply.github.com> Date: Mon, 5 Jun 2023 02:13:25 -0400 Subject: [PATCH] working chat --- package.json | 2 ++ src/App.vue | 90 +++++++++++++++++++++++++++++++++++++++++++++- tailwind.config.js | 2 +- yarn.lock | 89 +++++++++++++++++++++++++++++++++++++++++++-- 4 files changed, 179 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 4f9f8e3..a81ebb0 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,14 @@ "preview": "vite preview" }, "dependencies": { + "axios": "^1.4.0", "mongodb": "^5.6.0", "vue": "^3.2.47" }, "devDependencies": { "@vitejs/plugin-vue": "^4.1.0", "autoprefixer": "^10.4.14", + "daisyui": "^3.0.3", "postcss": "^8.4.24", "tailwindcss": "^3.3.2", "vite": "^4.3.9" diff --git a/src/App.vue b/src/App.vue index 75e66fa..03bd38f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,4 +1,29 @@