diff --git a/src/App.vue b/src/App.vue
index ed8ef20..6bfb7c1 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -13,6 +13,7 @@
+
@@ -27,10 +28,12 @@ import HistoryForTracker from "./views/HistoryForTracker";
import CustomBookForTracker from "./views/CustomBookForTracker";
import Settings from "./views/Settings";
import Tasks from "./views/Tasks";
+import Notes from "./views/Notes";
export default {
el: '#root',
components: {
+ Notes,
Tasks,
Settings,
CustomBookForTracker,
diff --git a/src/router/index.js b/src/router/index.js
index b2bf155..10b19aa 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -3,7 +3,6 @@ import Trackers from "../views/Trackers";
import Settings from "../views/Settings";
import TrackersDetail from "../views/TrackersDetail";
import Archive from "../views/Archive";
-import Notes from "../views/Notes";
Array.prototype.pushToBeginning = function (toPush) {
return this.unshift.apply(this, [toPush]);
@@ -25,11 +24,6 @@ const routes = [
name: 'Archive',
component: Archive
},
- {
- path: '/notes',
- name: 'Notes',
- component: Notes
- },
{
path: '/settings',
name: 'Settings',
diff --git a/src/views/Menu.vue b/src/views/Menu.vue
index f269f83..f6dc30e 100644
--- a/src/views/Menu.vue
+++ b/src/views/Menu.vue
@@ -46,14 +46,15 @@