
    /** starý kod (žeňovi se nelíbilo když byl velký komentář v html)
    <!--
        <div class="product-card__image-box">
        <img v-if="product.upload" :src="product.upload.path" class="product-card__image" :alt="product.upload.name"
             itemprop="image">
        <img v-else-if="product.uploadGroup" :src="product.uploadGroup.uploads[0].path" :alt="product.uploadGroup.uploads[0].name">
        <img v-else src="/build/img/product1.jpg" class="product-card__image" alt="Obrázek ještě nebyl nahrán"/>
      </div> -->
      <!-- <div class="product-card__title" itemprop="name">{{ product.name }} xxx</div>
      <div class="product-card__price" itemprop="offers" itemscope itemtype="https://schema.org/Offer">
        <div class="product-card__price-main">
              <span
                  itemprop="Price">{{ formatPrice(product.priceFrom) }}</span> <span
            itemprop="priceCurrency" content="CZK"></span>
          <s v-if="product.oldPrice" class="product-card__price-old">{{ formatPrice(product.oldPrice) }} </s>
        </div>
      </div>
      <div class="product-card__availability is-available" itemprop="availability">
        skladem
      </div> -->
<!--
      <template v-if="product.productParameterGroups.length > 0 && product.productVariants.length > 1">
        <div class="product-card__properties">
          <div class="product-card-property" v-for="parameterGroup in product.productParameterGroups">
            <template v-if="parameterGroup.parameterGroup.parameterGroupFilterType.name !== 'color'">
              <div class="product-card-property__label" >
                <svg class="product-card-property__label-icon">
                  <use :href="'build/svg/_icons.svg#' + parameterGroup.parameterGroup.class"></use>

                </svg>
                {{parameterGroup.parameterGroup.name}}:
              </div>
              <div class="product-card-property__value">
                {{ getParameterValuesForGroup(parameterGroup.parameterGroup).join(', ') }}
              </div>
            </template>
          </div>
        </div>
        <template v-for="parameterGroup in product.productParameterGroups">
          <div class="product-card__colors" v-if="parameterGroup.parameterGroup.parameterGroupFilterType.name === 'color'">
            <label class="product-card__color"  :style="{'--_color': '#'+parameter}" :class="{'product-card__color--white' : parameter === 'FFFFFF'}" :data-tooltip="parameter" v-for="parameter in getParameterValuesForGroup(parameterGroup.parameterGroup)" :key="parameter">
              <div class="product-card__color-preview"></div>
              <div class="visually-hidden">{{parameter}}</div>
            </label>
          </div>
        </template>
      </template> -->
    */

