Skip to content

Commit

Permalink
fix: remove unused files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvoedi committed Oct 7, 2022
1 parent 5bcd495 commit 427ba31
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 22 deletions.
Empty file added src/pages/.gitkeep
Empty file.
10 changes: 0 additions & 10 deletions src/pages/Home.vue

This file was deleted.

8 changes: 1 addition & 7 deletions src/router.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";

const routes: Array<RouteRecordRaw> = [
{
path: "/",
name: "home",
component: () => import("./pages/Home.vue"),
}
];
const routes: Array<RouteRecordRaw> = [];

const router = createRouter({
history: createWebHistory(),
Expand Down
10 changes: 5 additions & 5 deletions src/types/components.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// generated by unplugin-vue-components
// We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/core/pull/3399
import "@vue/runtime-core";
import '@vue/runtime-core'

export {};
export {}

declare module "@vue/runtime-core" {
declare module '@vue/runtime-core' {
export interface GlobalComponents {
RouterLink: typeof import("vue-router")["RouterLink"];
RouterView: typeof import("vue-router")["RouterView"];
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
}
}

0 comments on commit 427ba31

Please sign in to comment.