Skip to content

Instantly share code, notes, and snippets.

@eyaadh

eyaadh/main.js Secret

Created November 10, 2023 12:44
Show Gist options
  • Save eyaadh/3318b6c5bcb43950b873240764f1eab4 to your computer and use it in GitHub Desktop.
Save eyaadh/3318b6c5bcb43950b873240764f1eab4 to your computer and use it in GitHub Desktop.
agora-vedio-conference
import './assets/main.css'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import {router} from "@/router";
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment