Skip to content

Instantly share code, notes, and snippets.

@vjandrei
Last active November 20, 2020 14:32
Show Gist options
  • Save vjandrei/7f1284b0a4673001678a61d04319605e to your computer and use it in GitHub Desktop.
Save vjandrei/7f1284b0a4673001678a61d04319605e to your computer and use it in GitHub Desktop.
Vue3 axios globalProperties
import { createApp } from 'vue';
import axios from 'axios';
import MyApp from './App.vue';
const app = createApp(MyApp);
app.config.globalProperties.axios = axios;
app.mount('#app');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment