- Items:
+
+
+
+ Items:
+
+
+ {{ node.contents.length }}
+
-
- {{ node.contents.length }}
+
+
+
+
+ Mode:
+
+
+ {{ node.mode }}
+
+
+
+
+
+
+ Permissions:
+
+
+ {{ node.prot }}
+
+
+
+
+
+
+ User:
+
+
+ {{ node.user }}
+
+
+
+
+
+
+ Group:
+
+
+ {{ node.group }}
+
+
+
+
+
+
+ Date:
+
+
+ {{ node.time }}
+
diff --git a/src/index.css b/src/index.css
index cfa1a86..e1ea642 100644
--- a/src/index.css
+++ b/src/index.css
@@ -7,21 +7,18 @@
}
::-webkit-scrollbar {
- @apply bg-transparent w-2;
+ @apply bg-transparent w-2 h-1;
}
-/* Track */
::-webkit-scrollbar-track {
- @apply bg-gray-900;
+ @apply bg-gray-200 dark:bg-gray-900;
}
-/* Handle */
::-webkit-scrollbar-thumb {
- @apply bg-gray-800 rounded;
+ @apply bg-gray-300 dark:bg-gray-800 rounded;
}
-/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
- @apply bg-gray-700 rounded;
+ @apply bg-gray-400 dark:bg-gray-700 rounded;
}
diff --git a/src/main.js b/src/main.js
index 50a4dab..5e9decf 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,5 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
+import router from './router'
import './index.css'
-createApp(App).mount('#app')
+const app = createApp(App)
+app.use(router)
+app.mount('#app')
diff --git a/src/router/index.js b/src/router/index.js
new file mode 100644
index 0000000..f4388f0
--- /dev/null
+++ b/src/router/index.js
@@ -0,0 +1,16 @@
+import { createRouter, createWebHistory } from 'vue-router'
+
+import Home from './../components/Home.vue'
+import Guide from './../components/Guide.vue'
+import About from './../components/About.vue'
+
+const router = createRouter({
+ history: createWebHistory(),
+ routes: [
+ { path: '/', name: "home", component: Home },
+ { path: '/guide', name: "guide", component: Guide },
+ { path: '/about', name: "about", component: About },
+ ]
+})
+
+export default router