🐳 Adds Dockerfile
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import { createApp } from "vue";
|
||||
import {createApp} from "vue";
|
||||
import Home from "./pages/Home.vue";
|
||||
import * as VueRouter from "vue-router";
|
||||
import Playground from "./pages/Playground.vue";
|
||||
import "./index.css";
|
||||
|
||||
const routes = [
|
||||
{ path: "/", component: Home },
|
||||
{ path: "/playground", component: Playground },
|
||||
{ path: "/:pathMatch(.*)*", redirect: "/" },
|
||||
{path: "/", component: Home},
|
||||
{path: "/playground", component: Playground},
|
||||
{path: "/:pathMatch(.*)*", redirect: "/"},
|
||||
];
|
||||
|
||||
const router = VueRouter.createRouter({
|
||||
|
Reference in New Issue
Block a user