diff --git a/src/App.vue b/src/App.vue
index 9fa524a52306723ce8db3abce164a80349de0de5..e14ec8b8dadb70e7aba2bc25586fb875709bedca 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -28,8 +28,9 @@
 		</div>
 	</nav>
 
+	<!-- Container VueJS -->
 	<div class="container-fluid">
-		<router-view/> <!-- Container VueJS -->
+		<router-view/>
 	</div>
 </div>
 </template>
@@ -47,6 +48,10 @@ export default {
 				this.langs.push({ 'lang': property, 'locale': this.$i18n.messages[property].global.locale })
 			}
 		}
+	},
+	methods: {
+		getTrucs () {
+		}
 	}
 }
 </script>
diff --git a/src/components/Client.vue b/src/components/Client.vue
index 266f28784b398a66e85f0ce6f4d1fa937c03f0f6..24ee72d52dc9dde8609a2fadf9cfc50c6d254fd3 100644
--- a/src/components/Client.vue
+++ b/src/components/Client.vue
@@ -4,10 +4,10 @@
 		<span class="row">
 			<label for="numSSInput">{{$t('clients.numss-input')}}</label>
 			<div class="col">
-				<input v-model="client.numSS" v-bind:placeholder="$t('clients.numss-input')" type="text" id="numSSInput" class="form-control input_ss form-control-sm" size="13"/>
+				<input v-model="client.numSS" v-bind:placeholder="$t('clients.numss-input')" type="text" id="numSSInput" class="form-control form-control-sm input_ss" size="13"/>
 			</div>
 			<div class="col">
-				<input v-model="client.cleSS" v-bind:placeholder="$t('clients.keyss-input')" type="number" id="cleSSInput" class="form-control input_key form-control-sm" min="0" max="99" value="00" size="2"/>
+				<input v-model="client.cleSS" v-bind:placeholder="$t('clients.keyss-input')" type="number" id="cleSSInput" class="form-control form-control-sm input_key" min="0" max="99" value="00" size="2"/>
 			</div>
 		</span>
 		<span class="row">
@@ -73,22 +73,22 @@ export default {
 		return {
 			uuid: '',
 			client: {
-				uuid: undefined,
-				numSS: '',
-				cleSS: '',
-				lastName: '',
-				firstName: '',
-				birthDate: '',
-				address: '',
-				address2: '',
-				city: '',
-				zipcode: '',
-				cellphone: '',
-				phone: '',
-				center: '',
-				viewAt: '',
-				active: false,
-				isEdit: false
+				// uuid: undefined,
+				// numSS: '',
+				// cleSS: '',
+				// lastName: '',
+				// firstName: '',
+				// birthDate: '',
+				// address: '',
+				// address2: '',
+				// city: '',
+				// zipcode: '',
+				// cellphone: '',
+				// phone: '',
+				// center: '',
+				// viewAt: '',
+				// active: false,
+				// isEdit: false
 			}
 		}
 	},
@@ -150,13 +150,11 @@ export default {
 </script>
 
 <style>
-
-.input_ss { width: 9em; }
-.input_key { width: 3em; }
-.input_key input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
-	-moz-appearance: textfield;
-	-webkit-appearance: none;
-	margin: 0;
-}
-
+	.input_ss { width: 9em; }
+	.input_key { width: 3em; }
+	.input_key input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
+		-moz-appearance: textfield;
+		-webkit-appearance: none;
+		margin: 0;
+	}
 </style>
diff --git a/src/components/Settings.vue b/src/components/Settings.vue
index e2137c55a8cb31fce7a83746cd1bb109d7a24b6b..9f1dbe0c6b22ed54a88c1dfde669f422c6fdf20a 100644
--- a/src/components/Settings.vue
+++ b/src/components/Settings.vue
@@ -10,7 +10,7 @@
 
 <script>
 export default {
-    name: 'Settings',
+	name: 'Settings',
 	data () {
 		return { }
 	},