diff --git a/frontend/vue.js b/frontend/vue.js
index 1cacc64..2a14bbd 100644
--- a/frontend/vue.js
+++ b/frontend/vue.js
@@ -546,58 +546,51 @@ vm.$destroy()
* ******************************************************************************************* */
-// --- Updates the element’s textContent.
-// --- If you need to update the part of textContent, you should use {{ Mustache }} interpolations.
-
+//
+//
//
-// --- Updates the element’s innerHTML. Note that the contents are inserted as plain HTML -
-// --- they will not be compiled as Vue templates. If you find yourself trying to compose templates
-// --- using v-html, try to rethink the solution by using components instead.
-
+//
+//
+//
//
-// --- Toggle’s the element’s display CSS property based on the truthy-ness of the expression value.
-// --- This directive triggers transitions when its condition changes.
-
+//
+//
//
-// --- Conditionally render the element based on the truthy-ness of the expression value.
-// --- The element and its contained directives / components are destroyed and re-constructed
-// --- during toggles. If the element is a element, its content will be extracted as
-// --- the conditional block. This directive triggers transitions when its condition changes.
-
+//
+//
+//
+//
//
//
//
-// --- Render the element or template block multiple times based on the source data.
-// --- The directive’s value must use the special syntax alias in expression to provide an alias
-// --- for the current element being iterated on:
-
+//
+//
+//
//
{{ item.text }}
-// --- Alternatively, you can also specify an alias for the index (or the key if used on an Object):
-
+//
//
//
//
-// --- Attaches an event listener to the element. The event type is denoted by the argument.
-// --- The expression can be a method name, an inline statement, or omitted if there are modifiers present.
-
+//
+//
// .stop: Call event.stopPropagation().
// .prevent: Call event.preventDefault().
@@ -624,10 +617,9 @@ vm.$destroy()
// The click event will be triggered at most once:
-// --- Dynamically bind one or more attributes, or a component prop to an expression.
-// --- When used to bind the class or style attribute, it supports additional value types such as
-// --- Array or Objects. See linked guide section below for more details.
-
+//
+//
+//
// .prop: Bind as a DOM property instead of an attribute.
// .camel: (2.1.0+) transform the kebab-case attribute name into camelCase.
@@ -645,9 +637,8 @@ vm.$destroy()
// XLink:
-// --- Create a two-way binding on a form input element or a component.
-// --- For detailed usage and other notes, see the Guide section linked below.
-
+//
+//
// .lazy: Listen to change events instead of input
// .number: Cast input string to numbers
@@ -658,27 +649,24 @@ vm.$destroy()
//
-// --- Skip compilation for this element and all its children.
-// --- You can use this for displaying raw mustache tags.
-// --- Skipping large numbers of nodes with no directives on them can also speed up compilation.
-
+//
+//
+//
// {{ this will not be compiled }}
-// --- This directive will remain on the element until the associated Vue instance finishes
-// --- compilation. Combined with CSS rules such as [v-cloak] { display: none }, this directive
-// --- can be used to hide un-compiled mustache bindings until the Vue instance is ready.
-
+//
+//
+//
//
{{ message }}
// [v-cloak] { display: none; }
-// --- Render the element and component once only. On subsequent re-renders, the element/component
-// --- and all its children will be treated as static content and skipped. This can be used to
-// --- optimize update performance.
-
+//
+//
+//
// This will never change: {{msg}}
//
@@ -690,7 +678,34 @@ vm.$destroy()
* ******************************************************************************************* */
+//
+//
+//
+//
+//
+//