Skip to content

Commit 8209caf

Browse files
committed
Add tabindex
1 parent 1ec2457 commit 8209caf

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

public/js/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18309,6 +18309,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
1830918309
var _component_cart = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("cart");
1831018310

1831118311
return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("header", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [_hoisted_3, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_mobile_menu), _hoisted_4, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_5, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("nav", _hoisted_7, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("ul", _hoisted_8, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("li", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_router_link, {
18312+
tabindex: "0",
1831218313
to: "/"
1831318314
}, {
1831418315
"default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () {
@@ -18318,6 +18319,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
1831818319
/* STABLE */
1831918320

1832018321
})]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("li", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_router_link, {
18322+
tabindex: "0",
1832118323
to: "/products"
1832218324
}, {
1832318325
"default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () {

resources/js/components/Header/Navbar.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@
3333
<li
3434
class="inline-block py-2 text-xl font-semibold no-underline lg:text-base lg:px-4"
3535
>
36-
<router-link to="/">
36+
<router-link
37+
tabindex="0"
38+
to="/"
39+
>
3740
<span
3841
class="text-xl text-white no-underline lg:text-black is-active"
3942
>
@@ -44,7 +47,10 @@
4447
<li
4548
class="inline-block py-2 text-xl font-semibold no-underline lg:text-base lg:px-4"
4649
>
47-
<router-link to="/products">
50+
<router-link
51+
tabindex="0"
52+
to="/products"
53+
>
4854
<span
4955
class="text-xl text-white no-underline lg:text-black"
5056
>Products</span>

0 commit comments

Comments
 (0)