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