12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /* @var \Magento\Wishlist\Block\Link $block */
- ?>
- <li class="link wishlist" data-bind="scope: 'wishlist'">
- <a <?= /* @noEscape */ $block->getLinkAttributes() ?>><?= $block->escapeHtml($block->getLabel()) ?>
- <!-- ko if: wishlist().counter -->
- <span data-bind="text: wishlist().counter" class="counter qty"></span>
- <!-- /ko -->
- </a>
- </li>
- <script type="text/x-magento-init">
- {
- "*": {
- "Magento_Ui/js/core/app": {
- "components": {
- "wishlist": {
- "component": "Magento_Wishlist/js/view/wishlist"
- }
- }
- }
- }
- }
- </script>
|