diff --git a/src/js/routes.js b/src/js/routes.js
index 0d51fb2..ae3b3fb 100644
--- a/src/js/routes.js
+++ b/src/js/routes.js
@@ -4,7 +4,6 @@ import AboutPage from '../pages/about.vue';
import SettingsPage from '../pages/settings.vue';
import DetectPage from '../pages/detect.vue';
-import DynamicRoutePage from '../pages/dynamic-route.vue';
import NotFoundPage from '../pages/404.vue';
var routes = [
@@ -24,12 +23,6 @@ var routes = [
path: '/settings/',
component: SettingsPage,
},
-
-
- {
- path: '/dynamic-route/blog/:blogId/post/:postId/',
- component: DynamicRoutePage,
- },
{
path: '(.*)',
component: NotFoundPage,
diff --git a/src/pages/dynamic-route.vue b/src/pages/dynamic-route.vue
deleted file mode 100644
index 3bd6227..0000000
--- a/src/pages/dynamic-route.vue
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- - Url: {{ f7route.url }}
- - Path: {{ f7route.path }}
- - Hash: {{ f7route.hash }}
- -
- Params:
-
- -
- {{ key }}: {{ value }}
-
-
-
- -
- Query:
-
- -
- {{ key }}: {{ value }}
-
-
-
- - Route: {{ f7route.route.path }}
-
-
-
- Go back via Router API
-
-
-
-