funcion/refactor-general #45

Merged
atasistro merged 240 commits from funcion/refactor-general into master 2025-06-19 21:10:19 -03:00
Showing only changes of commit dd30726d10 - Show all commits

View file

@ -53,10 +53,10 @@
<script>
import ChismosaDropdown from '../pedidos/ChismosaDropdown.vue';
import {mapActions} from "vuex";
import { mapActions } from "vuex";
export default {
components: {ChismosaDropdown},
components: { ChismosaDropdown },
data() {
return {
burgerActiva: false,
@ -71,8 +71,8 @@ export default {
buscar() {
if (this.burgerActiva)
this.toggleBurger();
this.filtrarProductos({filtro: "nombre", valor: this.searchString});
Event.$emit('migas-agregar', {nombre: this.searchString});
this.filtrarProductos({ filtro: "nombre", valor: this.searchString });
Event.$emit('migas-agregar', { nombre: this.searchString });
}
},