Сделал альфа версию веб-сервера и интеграцию с базой данных

This commit is contained in:
12 changed files with 3112 additions and 51 deletions

13
src/router/index.js Normal file
View File

@@ -0,0 +1,13 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomePage from '../pages/HomePage.vue'
import OrderPage from '../pages/OrderPage.vue'
const routes = [
{ path: '/', component: HomePage },
{ path: '/order', component: OrderPage }
]
export default createRouter({
history: createWebHistory(),
routes
})