diff options
| author | RogerGabeller-ml <78610776+RogerGabeller-ml@users.noreply.github.com> | 2024-10-27 05:58:46 +0000 |
|---|---|---|
| committer | RogerGabeller-ml <78610776+RogerGabeller-ml@users.noreply.github.com> | 2024-10-27 05:58:46 +0000 |
| commit | 6e45ba9e67f9318d7771badf0ce4e89a8659e45d (patch) | |
| tree | 4d8562728fa8ed8149da927cd2d908484f115bb9 /src/main.ts | |
| parent | 3cd83e084e4ab1fa06f74b83f2a2060e14dd9b10 (diff) | |
Add cool function
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts index 4627342..442c5d5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,9 +3,12 @@ import "./assets/main.css"; import { createApp } from "vue"; import { createPinia } from "pinia"; import App from "./App.vue"; +import VueAxios from "vue-axios"; +import axios from "axios"; const app = createApp(App); app.use(createPinia()); +app.use(VueAxios, axios); app.mount("#app"); |
