[Vuejs]-How to make a x-for/v-for statement and make a block displayed – block

0👍

You have defined showTableHeader in the $store.products, so you need to access it from there:

<template x-if="$store.products.showTableHeader">
...
</template>

Leave a comment