From d837a0e4cfc7a0902dffe7100e5155f73039ef4f Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 14 Oct 2019 20:10:13 +0200 Subject: [PATCH] chore: remove outdated imports from exploration --- explorations/html5.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/explorations/html5.ts b/explorations/html5.ts index 7dacde96..dfaf5a51 100644 --- a/explorations/html5.ts +++ b/explorations/html5.ts @@ -1,13 +1,12 @@ import { Router, + plugin, // @ts-ignore - HTML5History, + createHistory, // @ts-ignore - HashHistory, + createMemoryHistory, // @ts-ignore - AbstractHistory, - plugin, - createHistory, + createHashHistory, } from '../src' import { RouteComponent } from '../src/types' import Vue from 'vue' @@ -21,7 +20,8 @@ declare global { } } -const routerHistory = createHistory() +const routerHistory = createHistory('/app') +// const routerHistory = createHashHistory() window.h = routerHistory const shared = { -- 2.47.2