diff --git a/src/js/app.js b/src/js/app.js index 37ef7b9..d989f8f 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -13,6 +13,7 @@ import 'framework7/css/bundle'; // Import Icons and App Custom Styles import '../css/icons.css'; import '../css/app.css'; +import '../fonts/outlined.css'; // Import App Component import App from '../components/app.vue'; diff --git a/src/js/routes.js b/src/js/routes.js index 3364fe8..0a21850 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -1,6 +1,7 @@ import HomePage from '../pages/home.vue'; import AboutPage from '../pages/about.vue'; +import DetectPage from '../pages/detect.vue'; import DynamicRoutePage from '../pages/dynamic-route.vue'; import RequestAndLoad from '../pages/request-and-load.vue'; @@ -15,6 +16,10 @@ var routes = [ path: '/about/', component: AboutPage, }, + { + path: '/detect/', + component: DetectPage, + }, { diff --git a/src/pages/detect.vue b/src/pages/detect.vue new file mode 100644 index 0000000..8e54497 --- /dev/null +++ b/src/pages/detect.vue @@ -0,0 +1,37 @@ + \ No newline at end of file diff --git a/src/pages/home.vue b/src/pages/home.vue index 738820b..8932358 100644 --- a/src/pages/home.vue +++ b/src/pages/home.vue @@ -34,6 +34,7 @@ Navigation +