1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37import { createApp } from 'vue';
import { createRouter, createWebHistory } from 'vue-router';
import i18n from './i18n';
// Styles
import './style.css';
// Components
import App from './App.vue';
// Router
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/subscription',
name: 'subscription',
component: () => import('./pages/subscription/components/SubscriptionForm.vue')
},
{
path: '/subscription/list',
name: 'subscription-list',
component: () => import('./pages/subscription/components/SubscriptionList.vue')
}
]
});
// Create app
const app = createApp(App);
// Use plugins
app.use(router);
app.use(i18n);
// Mount app
app.mount('#app');