From 6cb1b3f3d725dda71454b718b7cd22d6ae93f525 Mon Sep 17 00:00:00 2001
From: Shnappy31 <64201029+Shnappy31@users.noreply.github.com>
Date: Sat, 29 Aug 2020 00:31:24 +0200
Subject: [PATCH] 0.1.1

---
 index.html                  |  2 +-
 src/App.vue                 |  8 ++++----
 src/components/Settings.vue | 30 ++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+), 5 deletions(-)
 create mode 100644 src/components/Settings.vue

diff --git a/index.html b/index.html
index a545381..0d9fb0a 100644
--- a/index.html
+++ b/index.html
@@ -9,4 +9,4 @@
 		<div id="app"></div>
 		<!-- built files will be auto injected -->
 	</body>
-</html>
+</html>
\ No newline at end of file
diff --git a/src/App.vue b/src/App.vue
index e1d7158..9fa524a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -13,6 +13,9 @@
 			<li class="nav-item">
 				<a href="/Updates" class="nav-link">Updates</a>
 			</li>
+			<li class="nav-item">
+				<a href="/Settings" class="nav-link">Settings</a>
+			</li>
 		</div>
 		<form class="form-inline my-2 my-lg-0">
 			<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
@@ -26,10 +29,7 @@
 	</nav>
 
 	<div class="container-fluid">
-		<router-view/>
-		<!-- <router-view name="Client"/> -->
-		<!-- <router-view name="Products"/> -->
-		<!-- <router-view name=""> -->
+		<router-view/> <!-- Container VueJS -->
 	</div>
 </div>
 </template>
diff --git a/src/components/Settings.vue b/src/components/Settings.vue
new file mode 100644
index 0000000..e2137c5
--- /dev/null
+++ b/src/components/Settings.vue
@@ -0,0 +1,30 @@
+<template>
+	<div id="products-list" class="container">
+		<div>
+			<div class="">
+				<h1 class="text-center">Settings</h1>
+			</div>
+		</div>
+	</div>
+</template>
+
+<script>
+export default {
+    name: 'Settings',
+	data () {
+		return { }
+	},
+	mounted () {
+		console.log('Settings')
+		// for (var property in this.$i18n.messages) {
+		// 	if (this.$i18n.messages.hasOwnProperty(property)) {
+		// 		this.langs.push({ 'lang': property, 'locale': this.$i18n.messages[property].global.locale })
+		// 	}
+		// }
+	}
+}
+</script>
+
+<style>
+
+</style>
\ No newline at end of file
-- 
GitLab