You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maybe the tutorial's version of vue is somehow low.2 Template in one single .vue file is not allowed
so you can try this solution
in CreateUpdateBudget.vue
-old
<BudgetCategory
v-for="(value, key) in selectedBudget.budgetCategories"
:is="budgetCategoryComponent(value)"
:key="key"
:BudgetCategoryValue="value"<!-- here i change prop alias from :value to :BudgetCategoryVaule-->
v-on:update-budget-category="saveBudgetCategory"
v-on:edit-budget-category="activeBudgetCategory = value">
</BudgetCategory>
maybe the tutorial's version of vue is somehow low.2 Template in one single .vue file is not allowed
so you can try this solution
in CreateUpdateBudget.vue
-old
-new
the same goes in TransactionList.vue
-new
maybe my solution will be some help for who has the same problem while learning the tutorial
The text was updated successfully, but these errors were encountered: