funcion/refactor-general #45

Open
atasistro wants to merge 111 commits from funcion/refactor-general into master
Showing only changes of commit e82dd59c34 - Show all commits

View file

@ -19,7 +19,11 @@
chismosaActiva: false,
}
},
mounted() {
methods: {
...mapActions('productos', ["init"]),
},
async mounted() {
await this.init();
Event.$on('toggle-chismosa', (activa) => {
this.chismosaActiva = activa;
});