diff --git a/app/components/App.vue b/app/components/App.vue
index 0ff23d4a..a9332569 100644
--- a/app/components/App.vue
+++ b/app/components/App.vue
@@ -55,7 +55,9 @@
:key="index"
orientation="horizontal"
class="drawer-item orkm"
- :class="{ 'selected-drawer-item': selectedCategory == item }"
+ :class="{
+ 'selected-drawer-item': selectedCategory == item,
+ }"
>
@@ -71,7 +73,9 @@
:key="index"
orientation="horizontal"
class="drawer-item orkm"
- :class="{ 'selected-drawer-item': currentComponent == item.title }"
+ :class="{
+ 'selected-drawer-item': currentComponent == item.title,
+ }"
>
@@ -127,7 +131,7 @@
col="1"
/>
@@ -288,6 +293,14 @@ export default {
},
},
methods: {
+ highlight(args) {
+ console.log(args.object.className)
+ let temp = args.object.className
+ args.object.className = `${temp} option-highlight`
+ setTimeout(() => {
+ args.object.className = temp
+ }, 100)
+ },
setSelectedCategory(e) {
this.selectedCategory = e.item
console.log(e)
diff --git a/app/components/EnRecipes.vue b/app/components/EnRecipes.vue
index 812f947a..ec3f484b 100644
--- a/app/components/EnRecipes.vue
+++ b/app/components/EnRecipes.vue
@@ -1,7 +1,50 @@
-
+
+
+