From 8cba0a47bdc45a200bf58e4e54039c7de77d14fb Mon Sep 17 00:00:00 2001 From: purejgleason Date: Mon, 26 Sep 2022 17:29:03 -0400 Subject: [PATCH] Adding the vuetify stuff --- index.html | 3 +++ package.json | 2 +- src/App.vue | 3 +++ src/index.mjs | 4 ++++ 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 1636ca2..cbda4b6 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,14 @@ Caw Caw + +

This is a test

+ \ No newline at end of file diff --git a/package.json b/package.json index 96ad1ec..ab2fe36 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "author": "Jackie Gleason", "license": "MIT", "devDependencies": { - "@vitejs/plugin-vue": "^3.1.0", + "@vitejs/plugin-vue": "latest", "vite": "latest" } } diff --git a/src/App.vue b/src/App.vue index b3f21d0..fd2c528 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,8 @@ \ No newline at end of file diff --git a/src/index.mjs b/src/index.mjs index 71f5731..f12d333 100644 --- a/src/index.mjs +++ b/src/index.mjs @@ -1,5 +1,9 @@ import App from "./App.vue"; const { createApp } = Vue; +const { createVuetify } = Vuetify + +const vuetify = createVuetify() createApp(App) + .use(vuetify) .mount('#app'); \ No newline at end of file