skyturkish / divine-boost

A service website where players can move their accounts to the top leagues in exchange for money in various games.
https://elo-boost-7-frontend-luvjvoipkq-ew.a.run.app/
MIT License
0 stars 1 forks source link

HTTP Request reduce #41

Open skyturkish opened 1 year ago

skyturkish commented 1 year ago

-image

/**
 * main.js
 *
 * Bootstraps Vuetify and other plugins then mounts the App`
 */

// Components
import App from './App.vue'
import Banner from '@/components/Banner'
import GamesMenu from '@/components/menus/GamesMenu'

// Composables
import { createApp } from 'vue'

// Plugins
import { registerPlugins } from '@/plugins'

const app = createApp(App)

app.component('Banner', Banner)
app.component('GamesMenu', GamesMenu)

registerPlugins(app)

app.mount('#app')