[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"contentNavigation":3,"newsletter-stats":4,"$fQa3xUpnRDPNiFFu2QS4K-DAjYmsapeR9fNhPNBdpkOc":-1,"news-article-generating-random-ids-in-vuejs":6},[],{"confirmedCount":5},405,{"article":7,"engagement":1403,"relatedArticles":1406,"tags":1434},{"content":8,"createdAt":9,"embedding":10,"id":1390,"image":1391,"isAffiliate":1392,"isPublished":1392,"publishedAt":1393,"slug":1394,"sourceId":1395,"sourceName":1396,"sourceSlug":1397,"sourceType":1397,"sourceUrl":1398,"summary":1399,"title":1400,"updatedAt":1401,"url":1402},"If you have ever wired up a &lt;label for=&quot;…&quot;&gt; to an &lt;input id=&quot;…&quot;&gt;, duplicated a component twice, and suddenly had duplicate IDs in the document, you already know why “just pick an id string” does not scale. Vue 3.5 added useId(), a small Composition API helper that generates unique-per-application identifiers that stay consistent between server and client renders. Despite the casual phrase “random ids,” useId() is not a source of cryptographic randomness. It produces deterministic, stable strings that are unique within your Vue app instance. That distinction matters: you get uniqueness and SSR safety without Math.random() or global counters that fight hydration. Why useId() exists Manual patterns break down quickly: Hard-coded IDs collide when the same component is used more than once. Math.random() in setup gives different values on server and client, which can cause hydration mismatches in SSR apps. Hand-rolled incrementing counters are easy to get wrong across async boundaries or shared modules. useId() centralizes ID generation in the framework so labels, aria-* attributes, form controls, and more stay valid and predictable. Use Cases for useId() Common situations where you need a DOM-safe unique string (not cryptographic randomness): Creating unique DOM element IDs for anchor links Associating a label and input in a reusable form field component Anchoring headings for in-page navigation (table of contents) Assigning a unique id to custom tooltip or popover elements Distinguishing multiple error callouts or alerts in a single view Generating ids for ARIA attributes (aria-labelledby, aria-describedby, etc.) Marking tab panels and tab buttons with unique relationships Disambiguating ids in nested reusable components (e.g., accordions, tabs) Generating ids for form controls created at runtime (e.g., survey builders) Basic usage Import useId from vue and call it once per logical id you need in the component. Wire the returned string to id, for, or ARIA attributes as usual. &lt;script setup lang=&quot;ts&quot;&gt; import { useId } from &quot;vue&quot;; const nameFieldId = useId(); &lt;\u002Fscript&gt; &lt;template&gt; &lt;form&gt; &lt;label :for=&quot;nameFieldId&quot;&gt;Name&lt;\u002Flabel&gt; &lt;input :id=&quot;nameFieldId&quot; type=&quot;text&quot; name=&quot;name&quot; autocomplete=&quot;name&quot; \u002F&gt; &lt;\u002Fform&gt; &lt;\u002Ftemplate&gt; Each call to useId() in the same component instance receives a different id. Each instance of the component receives ids distinct from other instances. That matches what you want for accessible, reusable field groups. Multiple ids in one component Need a pair for email and password? Call useId() separately for each control (or group). &lt;script setup lang=&quot;ts&quot;&gt; import { useId } from &quot;vue&quot;; const emailId = useId(); const passwordId = useId(); &lt;\u002Fscript&gt; &lt;template&gt; &lt;div&gt; &lt;label :for=&quot;emailId&quot;&gt;Email&lt;\u002Flabel&gt; &lt;input :id=&quot;emailId&quot; type=&quot;email&quot; autocomplete=&quot;email&quot; \u002F&gt; &lt;\u002Fdiv&gt; &lt;div&gt; &lt;label :for=&quot;passwordId&quot;&gt;Password&lt;\u002Flabel&gt; &lt;input :id=&quot;passwordId&quot; type=&quot;password&quot; autocomplete=&quot;current-password&quot; \u002F&gt; &lt;\u002Fdiv&gt; &lt;\u002Ftemplate&gt; SSR and hydration According to the official API docs, ids from useId() are stable across server and client renders. You can use them in Nuxt, custom SSR setups, or any code path that renders on the server first without worrying that the client will “reroll” different strings during hydration. Multiple Vue apps on one page If more than one Vue application mounts on the same document, you can reduce the chance of clashes between apps by setting an id prefix on each app: import { createApp } from &quot;vue&quot;; import AdminRoot from &quot;.\u002FAdminRoot.vue&quot;; const app = createApp(AdminRoot); app.config.idPrefix = &quot;admin&quot;; app.mount(&quot;#admin-app&quot;); Use a different prefix per app instance so generated ids remain unique in the combined DOM. Important: do not call useId() inside computed() You should avoid invoking useId() inside a computed() getter. As with other composables, calling it there can cause instance conflicts because id registration is tied to component setup order. Instead, create the id at the top level of &lt;script setup&gt; (or setup()) and close over it inside computeds or methods. &lt;script setup lang=&quot;ts&quot;&gt; import { computed, useId } from &quot;vue&quot;; const fieldId = useId(); \u002F\u002F Good: fieldId is fixed for this instance; computed only derives display logic. const describedBy = computed(() =&gt; `${fieldId}-hint`); &lt;\u002Fscript&gt; When you might still use something else useId() is extremely useful on the frontend, but it is not the answer for every problem. Here are some cases where you might be tempted to reach for useId() but should not: Entity primary keys from your API—these should be generated by your database or API server Stable keys in v-for when list identity should follow data (prefer a real id from your database model) Correlation IDs for API requests—they should be unpredictable or traceable by policy; use crypto.randomUUID() or server-issued IDs instead of useId() Security-sensitive tokens—use proper random or server-issued secrets For everyday UI plumbing, though, useId() removes a whole class of duplicate-id and SSR bugs with almost no API surface. Summary To sum up, useId() is a powerful tool for generating unique ids for your application. It's a simple, composable API that helps you avoid duplicate-id and SSR bugs with almost no API surface. Uniqueness - Unique per Vue application; distinct for each component instance and on every call SSR - Produces the same id on server and client—safe for hydration Multiple apps - Use app.config.idPrefix to prevent cross-app id collisions when mounting multiple apps PitfallDo - do not call inside computed(); generate the id in setup scope","2026-04-08T06:47:33.045Z",[11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,17,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,145,199,200,201,202,203,204,205,206,97,207,208,209,210,211,156,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,336,381,382,383,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,238,411,412,289,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,120,442,443,444,445,40,22,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,363,512,513,514,145,189,258,515,516,517,452,518,519,520,521,522,377,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,81,525,566,567,568,322,569,570,216,571,186,572,573,574,57,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,92,605,606,607,608,609,610,338,611,612,613,614,615,616,617,618,619,620,621,622,83,623,624,625,626,627,39,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,93,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,508,662,663,295,664,665,666,667,668,669,670,671,291,672,673,674,156,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,357,696,697,698,699,700,701,702,703,704,705,706,78,707,708,709,710,711,712,713,714,715,716,571,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,284,732,523,733,734,735,736,737,738,739,740,272,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,90,393,769,770,771,772,773,774,775,776,777,778,779,780,781,760,782,783,784,785,575,786,136,787,198,788,789,790,791,792,793,794,795,796,797,798,799,292,800,801,802,803,804,805,806,807,808,184,809,810,811,812,813,814,815,346,816,817,818,819,820,179,821,822,17,91,823,824,825,826,827,828,829,830,831,832,833,834,835,836,137,494,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,204,879,468,408,880,881,882,883,884,885,886,803,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,259,905,906,907,889,908,909,384,910,911,825,912,913,914,915,916,917,918,919,920,921,382,922,923,924,925,75,926,927,928,929,930,931,932,933,934,935,936,937,346,938,438,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,470,971,905,513,972,973,974,975,976,18,977,978,979,176,980,981,982,983,545,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,223,764,926,1000,1001,1002,774,757,1003,1004,1005,1006,1007,380,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,63,1026,1027,1028,845,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,583,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,452,1052,1053,1054,1055,1056,265,1057,1058,1059,1060,1061,787,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,849,1080,1081,725,1082,833,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,314,409,1093,1094,1095,352,1096,1097,1098,1099,1100,1101,1102,1103,1104,431,1105,1106,321,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,397,1117,1118,1119,1120,595,1121,1122,409,1123,288,1124,1125,1126,541,1127,1128,1129,1130,521,1131,1132,1133,1134,415,1000,1135,1136,1137,1138,1139,1140,1141,1142,1143,1038,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,767,1158,528,1159,281,1160,1161,1162,1163,1164,1165,1166,860,1167,1168,1169,294,1170,1171,615,1172,1173,1174,1175,1176,172,1177,1178,963,1179,782,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,382,1191,1080,1192,1193,1194,759,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,535,1226,1227,1228,92,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,426,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1031,1211,1254,1255,21,1256,1257,1200,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1196,1268,1269,1270,128,1271,1272,121,1273,1274,1275,1276,969,1277,1278,1279,1280,1281,576,1282,1283,1284,1285,86,1286,1287,1288,1289,1290,1291,1292,910,649,645,1293,1294,156,1295,1296,1297,1298,1299,1300,150,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,423,1315,594,1316,595,1317,1318,1319,864,1320,1321,1322,1323,1324,45,1325,1326,1327,1328,1329,37,1330,1331,953,83,1332,1333,747,1334,1335,1240,1336,1337,1338,1339,1340,1341,1342,1343,1344,144,968,1345,1346,541,1299,1347,1348,1349,1350,392,1351,1352,1353,1354,1355,1356,1357,1358,1359,311,1360,371,1361,1362,672,1363,1364,1365,1366,1367,147,1368,1369,1370,1371,1372,311,1122,1373,1374,1375,1080,1376,1377,1063,525,305,1378,847,575,1379,1035,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389],-0.019439697265625,-0.066162109375,0.01308441162109375,0.011749267578125,0.01194000244140625,-0.047454833984375,-0.03607177734375,-0.0082550048828125,0.01438140869140625,-0.0024166107177734375,0.027374267578125,-0.01751708984375,-0.00926971435546875,-0.040618896484375,0.0247650146484375,0.01493072509765625,-0.0288848876953125,-0.0421142578125,-0.00917816162109375,0.041015625,-0.039154052734375,0.031280517578125,0.037353515625,0.05242919921875,0.0182342529296875,-0.0019817352294921875,-0.0390625,0.02581787109375,0.028717041015625,-0.0078582763671875,0.034759521484375,-0.036041259765625,0.0242919921875,0.006923675537109375,-0.026336669921875,0.01019287109375,-0.000926971435546875,-0.034637451171875,-0.0122833251953125,0.030303955078125,0.0059661865234375,0.021759033203125,0.05743408203125,-0.032318115234375,-0.02777099609375,-0.00025916099548339844,0.0228424072265625,-0.0104827880859375,-0.01155853271484375,0.02301025390625,-0.00040149688720703125,0.01187896728515625,0.0036869049072265625,0.0252685546875,-0.020904541015625,-0.0298309326171875,-0.045074462890625,0.028350830078125,-0.038909912109375,0.0072784423828125,0.0712890625,-0.061553955078125,-0.0045623779296875,0.07513427734375,0.0159759521484375,0.040618896484375,-0.02032470703125,0.016815185546875,0.0628662109375,0.01294708251953125,0.04034423828125,0.02496337890625,0.032928466796875,-0.02044677734375,0.0310821533203125,0.033050537109375,-0.0241546630859375,0.0014781951904296875,-0.0023021697998046875,-0.014495849609375,0.029541015625,0.0196533203125,-0.042999267578125,-0.0204925537109375,-0.06500244140625,-0.0015726089477539062,0.00791168212890625,-0.0173797607421875,0.01519012451171875,-0.041473388671875,0.022735595703125,-0.05743408203125,-0.00945281982421875,-0.038177490234375,0.0284423828125,-0.01200103759765625,-0.004169464111328125,-0.012664794921875,0.0721435546875,0.015655517578125,-0.02069091796875,-0.0117034912109375,0.01479339599609375,0.0352783203125,-0.0037364959716796875,0.003387451171875,0.00255584716796875,-0.038116455078125,0.00186920166015625,-0.0069122314453125,0.0177154541015625,-0.0244903564453125,0.0382080078125,-0.01071929931640625,-0.020599365234375,0.03411865234375,0.00522613525390625,-0.0308074951171875,-0.0743408203125,-0.01474761962890625,-0.0360107421875,0.040771484375,0.00829315185546875,-0.0379638671875,-0.01074981689453125,-0.010589599609375,-0.0290679931640625,-0.044647216796875,-0.03936767578125,0.038177490234375,0.01293182373046875,0.056976318359375,-0.00998687744140625,-0.020263671875,-0.02642822265625,-0.010528564453125,-0.01293182373046875,-0.01332855224609375,0.008636474609375,0.0065155029296875,-0.04351806640625,0.036529541015625,-0.005950927734375,0.046630859375,-0.021636962890625,0.0175933837890625,0.01198577880859375,0.0207061767578125,-0.0034122467041015625,-0.0687255859375,-0.03814697265625,-0.020965576171875,-0.01500701904296875,0.0297088623046875,-0.019500732421875,0.03802490234375,-0.034149169921875,0.0211029052734375,-0.02874755859375,0.0028533935546875,-0.01275634765625,-0.008026123046875,-0.03399658203125,-0.01015472412109375,0.0185699462890625,0.016754150390625,-0.0543212890625,-0.0221405029296875,0.0254974365234375,0.004913330078125,-0.050201416015625,-0.00952911376953125,-0.0484619140625,0.00905609130859375,-0.001186370849609375,0.02459716796875,0.0204010009765625,0.021270751953125,0.0309295654296875,0.047760009765625,0.06939697265625,0.00968170166015625,0.0100860595703125,-0.01922607421875,0.03302001953125,-0.0053863525390625,-0.055938720703125,-0.01235198974609375,-0.020538330078125,0.0223846435546875,-0.020050048828125,0.01102447509765625,0.031402587890625,-0.00862884521484375,0.0239410400390625,-0.045745849609375,-0.006839752197265625,-0.00937652587890625,0.002117156982421875,0.00652313232421875,-0.04693603515625,-0.00853729248046875,-0.0225067138671875,-0.059173583984375,0.029510498046875,-0.00505828857421875,0.0018367767333984375,0.04229736328125,0.01467132568359375,0.00865936279296875,-0.01219940185546875,-0.0014009475708007812,0.02874755859375,0.048187255859375,0.0687255859375,0.00620269775390625,-0.0233306884765625,-0.0007214546203613281,0.034942626953125,-0.0322265625,0.01251220703125,-0.0006680488586425781,0.0928955078125,-0.033538818359375,-0.00667572021484375,0.03094482421875,0.004901885986328125,-0.027801513671875,0.022125244140625,-0.056488037109375,-0.020111083984375,0.03704833984375,-0.0152130126953125,0.0129547119140625,-0.039703369140625,-0.0210723876953125,-0.0007338523864746094,-0.019927978515625,-0.0262603759765625,0.00533294677734375,0.0268096923828125,0.02752685546875,-0.031494140625,-0.005428314208984375,-0.01800537109375,0.033660888671875,0.005207061767578125,-0.0156097412109375,0.0438232421875,-0.030487060546875,0.01168060302734375,0.00856781005859375,0.003910064697265625,0.0677490234375,0.05609130859375,0.007434844970703125,-0.004451751708984375,-0.032257080078125,-0.04132080078125,0.026214599609375,-0.032623291015625,0.015838623046875,-0.003490447998046875,0.057281494140625,0.0168914794921875,-0.0521240234375,-0.04656982421875,-0.051727294921875,0.0048828125,-0.040374755859375,0.0163116455078125,0.004253387451171875,-0.011260986328125,0.031982421875,-0.03985595703125,-0.00014162063598632812,-0.005756378173828125,-0.00809478759765625,0.023773193359375,0.04876708984375,0.0194244384765625,0.02191162109375,-0.01099395751953125,0.0024967193603515625,-0.0318603515625,-0.037689208984375,0.00832366943359375,0.01251983642578125,-0.0135498046875,-0.047607421875,-0.019866943359375,0.08477783203125,0.06298828125,-0.0095672607421875,0.0085296630859375,0.01520538330078125,0.0193023681640625,-0.03717041015625,0.0164642333984375,0.0037689208984375,0.01285552978515625,-0.02349853515625,-0.03619384765625,0.0131072998046875,-0.001224517822265625,0.0180816650390625,0.003875732421875,0.01143646240234375,-0.0286865234375,-0.045135498046875,0.0185089111328125,-0.01245880126953125,-0.01192474365234375,0.030548095703125,-0.006214141845703125,0.03558349609375,0.0265045166015625,-0.00002759695053100586,0.0012912750244140625,0.013214111328125,-0.01514434814453125,-0.06793212890625,-0.057037353515625,-0.0075225830078125,0.01181793212890625,0.0067138671875,-0.0018711090087890625,-0.026611328125,0.00467681884765625,0.029022216796875,-0.004718780517578125,-0.049346923828125,-0.036590576171875,-0.007633209228515625,-0.003620147705078125,0.025634765625,-0.023223876953125,-0.01201629638671875,0.0244903564453125,-0.04168701171875,0.01739501953125,-0.037750244140625,-0.0102081298828125,-0.01198577880859375,-0.004474639892578125,-0.005191802978515625,0.0195159912109375,-0.0294647216796875,0.03912353515625,-0.08441162109375,-0.0033721923828125,0.00872039794921875,0.01371002197265625,-0.034454345703125,-0.061614990234375,-0.050018310546875,-0.01465606689453125,0.035888671875,-0.024749755859375,0.007472991943359375,0.01763916015625,-0.02374267578125,-0.0234375,0.024688720703125,-0.04638671875,0.018707275390625,-0.043792724609375,0.01165008544921875,-0.051177978515625,0.008697509765625,0.033721923828125,-0.0228424072265625,0.0108184814453125,0.0616455078125,0.0299072265625,0.0285186767578125,-0.006793975830078125,-0.036773681640625,0.07318115234375,0.01236724853515625,0.0257110595703125,-0.0262298583984375,-0.0465087890625,-0.0095062255859375,-0.05499267578125,-0.0184783935546875,-0.0289154052734375,0.0009665489196777344,-0.0014352798461914062,0.03021240234375,-0.003932952880859375,-0.0195159912109375,0.0238189697265625,0.0082855224609375,0.01134490966796875,0.04443359375,0.001003265380859375,-0.01546478271484375,0.012451171875,-0.014556884765625,-0.014617919921875,0.032196044921875,0.0007672309875488281,0.0225372314453125,0.018524169921875,-0.0015039443969726562,0.039276123046875,-0.005016326904296875,0.044891357421875,-0.06304931640625,0.00997161865234375,0.0638427734375,-0.042938232421875,-0.037078857421875,-0.0233612060546875,-0.0355224609375,0.00495147705078125,-0.009765625,0.0167999267578125,0.017333984375,0.0298919677734375,-0.04547119140625,-0.041961669921875,-0.005970001220703125,0.0235748291015625,-0.0032367706298828125,-0.01580810546875,-0.007049560546875,0.0162506103515625,-0.0012350082397460938,0.05499267578125,0.03350830078125,0.005275726318359375,-0.06298828125,0.00705718994140625,-0.0233917236328125,-0.0225830078125,-0.01285552978515625,-0.0259857177734375,-0.048980712890625,0.023345947265625,0.0239715576171875,-0.017181396484375,0.0011043548583984375,-0.038726806640625,-0.016754150390625,0.006992340087890625,-0.0214996337890625,0.011566162109375,-0.0140838623046875,0.04608154296875,-0.028564453125,0.05902099609375,0.0161895751953125,0.015411376953125,0.0003440380096435547,-0.0113372802734375,0.04071044921875,-0.056732177734375,-0.0025157928466796875,-0.0030879974365234375,0.061859130859375,0.0164031982421875,-0.022918701171875,-0.01277923583984375,-0.002574920654296875,-0.01082611083984375,-0.0252838134765625,-0.0236053466796875,0.0007448196411132812,-0.00881195068359375,-0.0380859375,-0.0197601318359375,0.003948211669921875,0.0836181640625,0.030059814453125,0.00545501708984375,0.0022716522216796875,0.006092071533203125,-0.07470703125,-0.0007467269897460938,0.0328369140625,-0.01232147216796875,0.031463623046875,0.0670166015625,0.054351806640625,-0.0250244140625,-0.02618408203125,0.0057525634765625,0.0430908203125,-0.03704833984375,-0.007221221923828125,0.08282470703125,0.035430908203125,-0.004146575927734375,0.038238525390625,0.0140228271484375,0.007781982421875,0.0279541015625,-0.0261077880859375,0.0173187255859375,-0.022369384765625,-0.01629638671875,-0.01000213623046875,-0.00421142578125,0.0027332305908203125,0.0419921875,-0.051422119140625,0.0206146240234375,-0.007167816162109375,-0.017242431640625,-0.039215087890625,-0.0094146728515625,0.0013141632080078125,-0.033050537109375,0.00691986083984375,-0.0022449493408203125,-0.031982421875,-0.02496337890625,0.003017425537109375,0.01047515869140625,0.01459503173828125,0.007061004638671875,0.0057220458984375,0.032440185546875,0.0198516845703125,-0.026824951171875,-0.0232696533203125,0.0095672607421875,-0.00003075599670410156,0.01201629638671875,-0.0279541015625,0.0013866424560546875,-0.0274200439453125,-0.0285491943359375,-0.0290374755859375,-0.0205078125,0.0022449493408203125,0.0186004638671875,0.00714111328125,0.0200042724609375,0.0428466796875,0.0213470458984375,0.0183868408203125,0.0211944580078125,0.048065185546875,0.03173828125,-0.012359619140625,0.017242431640625,0.03045654296875,-0.00807952880859375,-0.035247802734375,-0.01340484619140625,-0.019134521484375,0.012603759765625,-0.004955291748046875,0.01392364501953125,-0.01214599609375,0.01534271240234375,0.01259613037109375,-0.03436279296875,0.028839111328125,-0.053131103515625,0.034210205078125,-0.024810791015625,0.0302276611328125,0.023590087890625,0.0003917217254638672,0.0033817291259765625,0.00823974609375,-0.00737762451171875,-0.00868988037109375,-0.004520416259765625,0.015106201171875,-0.00313568115234375,0.022064208984375,-0.0284271240234375,-0.034698486328125,0.04083251953125,-0.037567138671875,-0.01708984375,-0.00330352783203125,0.0141754150390625,0.0194549560546875,0.021636962890625,-0.0311279296875,-0.0145721435546875,-0.016357421875,0.025360107421875,-0.00444793701171875,-0.04022216796875,-0.005397796630859375,0.0117645263671875,0.0160369873046875,-0.0164031982421875,0.032684326171875,0.0003960132598876953,0.0017480850219726562,0.01445770263671875,-0.00684356689453125,0.023284912109375,-0.0009160041809082031,-0.06658935546875,0.01035308837890625,-0.04296875,-0.015289306640625,-0.03961181640625,-0.01406097412109375,-0.0258331298828125,-0.0007472038269042969,0.0144195556640625,-0.006969451904296875,0.0233306884765625,-0.0028533935546875,-0.0161285400390625,0.032562255859375,0.023529052734375,0.0008144378662109375,-0.0144195556640625,-0.00691986083984375,0.021331787109375,0.031494140625,0.006134033203125,-0.03338623046875,-0.020355224609375,0.006343841552734375,0.0104217529296875,0.02685546875,0.0085906982421875,0.0065765380859375,0.022857666015625,-0.0227508544921875,0.023834228515625,0.004962921142578125,-0.027923583984375,-0.0292205810546875,0.0032520294189453125,0.0106048583984375,0.01346588134765625,0.00293731689453125,-0.01520538330078125,-0.004734039306640625,-0.0170135498046875,0.042755126953125,0.0032711029052734375,0.01085662841796875,0.01495361328125,-0.00550079345703125,-0.0162506103515625,-0.00821685791015625,0.0122833251953125,0.001964569091796875,0.0350341796875,-0.00936126708984375,0.00920867919921875,0.006656646728515625,0.0038509368896484375,-0.0150299072265625,0.00138092041015625,-0.01013946533203125,-0.0033473968505859375,0.0202178955078125,0.018463134765625,-0.00829315185546875,0.033935546875,0.0200653076171875,-0.0016183853149414062,0.04638671875,0.0204315185546875,-0.0177459716796875,0.0083465576171875,-0.0030002593994140625,0.0049285888671875,-0.0134429931640625,0.0210723876953125,-0.0122528076171875,0.0119476318359375,0.005733489990234375,-0.03997802734375,-0.00750732421875,-0.0228729248046875,-0.0304107666015625,-0.03173828125,-0.010467529296875,0.002368927001953125,-0.01416015625,-0.02398681640625,-0.00811004638671875,0.01364898681640625,-0.049468994140625,-0.0133056640625,0.018280029296875,-0.0119476318359375,-0.030609130859375,-0.01120758056640625,-0.0164794921875,-0.0179901123046875,0.0184326171875,0.04730224609375,0.01386260986328125,0.031097412109375,0.06353759765625,-0.034515380859375,0.005035400390625,-0.052825927734375,-0.0124359130859375,0.043853759765625,-0.01678466796875,-0.005985260009765625,0.0218353271484375,0.0019512176513671875,0.0179290771484375,-0.00572967529296875,0.00028824806213378906,-0.00876617431640625,-0.0117340087890625,0.0087890625,-0.0022945404052734375,0.0024509429931640625,-0.01016998291015625,-0.018035888671875,-0.022552490234375,0.06671142578125,0.0167694091796875,0.0037441253662109375,-0.005420684814453125,0.02764892578125,0.0187835693359375,-0.041839599609375,-0.0139617919921875,-0.03778076171875,0.0305023193359375,-0.0231475830078125,-0.006221771240234375,-0.01134490966796875,-0.01444244384765625,0.0192108154296875,-0.0362548828125,-0.0167694091796875,0.0027618408203125,-0.03411865234375,0.0205535888671875,0.0032825469970703125,0.00324249267578125,-0.024658203125,-0.0211639404296875,0.017730712890625,0.00670623779296875,0.023956298828125,0.019256591796875,0.02117919921875,-0.04205322265625,0.0022735595703125,0.0120849609375,0.01300811767578125,-0.0037078857421875,-0.012420654296875,0.03009033203125,-0.049163818359375,0.0033321380615234375,-0.01953125,0.0243682861328125,-0.0009098052978515625,0.0310211181640625,0.006801605224609375,0.02923583984375,-0.0215911865234375,-0.006572723388671875,-0.0020503997802734375,-0.007080078125,-0.042388916015625,-0.020172119140625,0.01904296875,0.0034122467041015625,-0.0239410400390625,-0.0089569091796875,-0.03692626953125,-0.0139007568359375,-0.00858306884765625,0.0018596649169921875,0.002567291259765625,0.03887939453125,-0.029815673828125,0.0034847259521484375,-0.02301025390625,-0.008453369140625,0.012908935546875,0.0103912353515625,0.038299560546875,0.00872802734375,0.038116455078125,-0.049591064453125,0.0238037109375,-0.0169219970703125,-0.007030487060546875,-0.00658416748046875,-0.0003993511199951172,0.01439666748046875,0.039794921875,-0.010833740234375,0.0301513671875,-0.004856109619140625,0.0311737060546875,-0.0236358642578125,-0.0107879638671875,0.00580596923828125,0.03533935546875,0.0094451904296875,0.004154205322265625,-0.0184173583984375,-0.02490234375,-0.0005140304565429688,-0.0175018310546875,0.007198333740234375,0.02130126953125,0.0113525390625,-0.0408935546875,0.007289886474609375,0.02294921875,0.01319122314453125,0.0203399658203125,0.01381683349609375,-0.0228118896484375,0.00513458251953125,-0.007686614990234375,0.010040283203125,-0.05364990234375,0.0103759765625,0.0178375244140625,0.0305328369140625,0.01126861572265625,-0.00127410888671875,-0.00984954833984375,-0.0141143798828125,0.00812530517578125,-0.01519012451171875,-0.0224761962890625,-0.0287628173828125,0.03277587890625,-0.004093170166015625,0.0183258056640625,-0.043548583984375,0.009796142578125,-0.0014591217041015625,-0.0254669189453125,0.005859375,0.006526947021484375,-0.036895751953125,-0.04901123046875,-0.0248870849609375,0.00494384765625,0.010711669921875,-0.01453399658203125,-0.017303466796875,0.0097503662109375,-0.005645751953125,-0.00007092952728271484,-0.047149658203125,0.0013332366943359375,-0.03515625,0.0654296875,0.047027587890625,-0.004913330078125,0.0082244873046875,-0.0099639892578125,0.01593017578125,-0.0572509765625,0.00965118408203125,-0.004486083984375,-0.0299530029296875,-0.0032978057861328125,-0.00292205810546875,0.03839111328125,0.039031982421875,0.051025390625,-0.01263427734375,-0.0281524658203125,-0.01218414306640625,-0.0185546875,-0.0224151611328125,0.00684356689453125,0.003032684326171875,-0.0278778076171875,0.0172271728515625,-0.0272216796875,0.006389617919921875,0.02740478515625,-0.0047454833984375,-0.006740570068359375,0.0298614501953125,0.01345062255859375,0.01324462890625,0.00574493408203125,0.0029544830322265625,0.0224609375,0.0704345703125,0.03485107421875,0.028564453125,0.0181121826171875,0.013946533203125,0.00983428955078125,0.016448974609375,-0.00010645389556884766,0.03863525390625,-0.0205841064453125,-0.019195556640625,0.0286865234375,0.000888824462890625,-0.04803466796875,0.0007443428039550781,0.012847900390625,0.00577545166015625,-0.004032135009765625,0.007007598876953125,0.06634521484375,-0.033447265625,0.03680419921875,-0.02789306640625,-0.00010693073272705078,0.0195770263671875,-0.00927734375,-0.00951385498046875,-0.016845703125,0.0245513916015625,-0.00887298583984375,-0.0013647079467773438,0.00391387939453125,-0.00933837890625,-0.00104522705078125,-0.01314544677734375,0.009490966796875,-0.01088714599609375,0.0138397216796875,0.017059326171875,-0.00044417381286621094,-0.03363037109375,0.03936767578125,0.016204833984375,0.00789642333984375,-0.003978729248046875,0.009368896484375,0.0103607177734375,0.0172576904296875,-0.0092315673828125,0.040679931640625,-0.002288818359375,0.020050048828125,-0.01806640625,-0.0007238388061523438,-0.027099609375,0.0093231201171875,-0.032867431640625,-0.028228759765625,0.01416015625,-0.02020263671875,-0.007724761962890625,0.0139617919921875,-0.0270538330078125,-0.01457977294921875,-0.030029296875,-0.034088134765625,-0.0168609619140625,-0.0258636474609375,0.004878997802734375,-0.0276336669921875,0.0036525726318359375,0.00928497314453125,0.0010890960693359375,-0.00913238525390625,-0.0126800537109375,0.0020313262939453125,0.00604248046875,-0.036163330078125,0.045257568359375,0.032470703125,-0.0201568603515625,-0.0152435302734375,0.01006317138671875,-0.0255584716796875,0.037139892578125,-0.02166748046875,-0.002094268798828125,0.012115478515625,0.0139007568359375,0.0313720703125,0.01422119140625,0.0145416259765625,0.013580322265625,-0.0081634521484375,0.0149078369140625,-0.00478363037109375,0.03985595703125,0.019073486328125,0.01425933837890625,0.0212554931640625,0.027801513671875,-0.03900146484375,-0.0204010009765625,-0.025360107421875,-0.0002696514129638672,0.0027637481689453125,-0.0579833984375,-0.002056121826171875,-0.0413818359375,-0.01421356201171875,-0.0171966552734375,-0.0208892822265625,-0.06353759765625,0.0234527587890625,0.030609130859375,0.028076171875,0.02203369140625,-0.0022792816162109375,0.00582122802734375,0.01483154296875,-0.0156402587890625,-0.0174713134765625,0.006076812744140625,0.0014772415161132812,-0.0013675689697265625,0.0250396728515625,0.01404571533203125,0.04833984375,0.00464630126953125,0.0292205810546875,0.04296875,0.04327392578125,0.02264404296875,-0.0206146240234375,0.0262603759765625,0.010772705078125,0.0164947509765625,0.0014057159423828125,-0.01360321044921875,-0.0043487548828125,-0.01116943359375,0.0176544189453125,0.01232147216796875,-0.026885986328125,0.035369873046875,-0.04180908203125,-0.0167999267578125,-0.011444091796875,-0.00966644287109375,-0.00601959228515625,0.009063720703125,0.004238128662109375,-0.0166168212890625,0.0271759033203125,0.0157318115234375,-0.013641357421875,0.0173797607421875,0.0137786865234375,0.01824951171875,0.019927978515625,0.00168609619140625,0.00528717041015625,0.02276611328125,0.037841796875,0.020782470703125,-0.0019359588623046875,0.0106658935546875,0.016265869140625,-0.00363922119140625,-0.01181793212890625,0.04168701171875,0.00635528564453125,-0.005306243896484375,-0.0263824462890625,0.01397705078125,-0.009063720703125,-0.028045654296875,-0.002544403076171875,-0.0247802734375,0.0100555419921875,0.01971435546875,-0.0181427001953125,0.0041961669921875,0.01084136962890625,-0.00946044921875,0.0023097991943359375,-0.0125732421875,-0.0064849853515625,-0.00909423828125,0.0102081298828125,0.0267333984375,0.00027632713317871094,0.02166748046875,0.01023101806640625,-0.005321502685546875,0.0142974853515625,0.03955078125,-0.04034423828125,-0.0178070068359375,0.015625,0.026580810546875,-0.01258087158203125,0.0220794677734375,-0.032806396484375,0.002696990966796875,-0.01378631591796875,0.006744384765625,-0.007328033447265625,0.004543304443359375,-0.0041351318359375,-0.0159759521484375,-0.027557373046875,0.038482666015625,0.00487518310546875,-0.00865936279296875,0.0023059844970703125,0.01325225830078125,-0.0291900634765625,-0.0270233154296875,0.01044464111328125,-0.0283203125,0.010406494140625,0.03662109375,0.0238800048828125,0.0130462646484375,-0.025238037109375,0.021514892578125,-0.0194854736328125,0.007785797119140625,0.04400634765625,-0.002765655517578125,0.0058746337890625,-0.02752685546875,-0.0240325927734375,0.0215301513671875,-0.002208709716796875,0.0166168212890625,0.0205078125,-0.002803802490234375,0.007694244384765625,0.035064697265625,-0.0281219482421875,0.04010009765625,0.0178680419921875,0.0081939697265625,0.01230621337890625,0.019622802734375,-0.0041961669921875,-0.008148193359375,-0.04583740234375,-0.033935546875,0.0210113525390625,0.01218414306640625,-0.00464630126953125,0.00717926025390625,0.00830841064453125,0.00045490264892578125,-0.017852783203125,-0.024139404296875,0.003757476806640625,-0.0011472702026367188,-0.0023937225341796875,-0.003360748291015625,-0.0305328369140625,-0.011749267578125,-0.0192413330078125,-0.0030765533447265625,-0.0037631988525390625,0.041412353515625,-0.041534423828125,0.01235198974609375,0.0025005340576171875,-0.0211181640625,0.050140380859375,-0.045684814453125,0.0110931396484375,-0.000606536865234375,0.020355224609375,-0.02008056640625,0.0241851806640625,-0.00066375732421875,-0.049896240234375,-0.0140228271484375,0.0056610107421875,-0.0223541259765625,-0.01617431640625,-0.01326751708984375,0.0263671875,-0.02276611328125,0.0300140380859375,-0.01073455810546875,-0.01274871826171875,-0.005340576171875,0.013824462890625,-0.004161834716796875,0.005954742431640625,0.0010976791381835938,-0.0155487060546875,0.0006122589111328125,0.0211639404296875,0.00409698486328125,0.0008382797241210938,-0.031646728515625,0.036376953125,0.007110595703125,0.032073974609375,-0.0086517333984375,-0.007965087890625,-0.024627685546875,0.0367431640625,0.0260162353515625,-0.002685546875,0.00708770751953125,-0.0199737548828125,-0.002704620361328125,0.00615692138671875,-0.0224609375,-0.036224365234375,0.038909912109375,0.00780487060546875,-0.022247314453125,0.0295562744140625,0.0002675056457519531,-0.00991058349609375,-0.0086822509765625,-0.03729248046875,-0.0011119842529296875,-0.0386962890625,-0.027496337890625,0.057830810546875,-0.05010986328125,0.04766845703125,0.0025539398193359375,-0.006256103515625,-0.032379150390625,0.01910400390625,-0.0261383056640625,0.0455322265625,-0.007099151611328125,0.019683837890625,-0.025634765625,-0.0147705078125,-0.01505279541015625,-0.037139892578125,0.0301055908203125,0.01314544677734375,0.0290679931640625,0.01348876953125,0.03070068359375,0.056732177734375,0.01049041748046875,0.00450897216796875,-0.010650634765625,-0.008697509765625,0.01629638671875,0.05029296875,-0.001056671142578125,-0.010498046875,-0.01666259765625,-0.0012483596801757812,0.0164337158203125,-0.00495147705078125,0.031585693359375,0.021881103515625,0.014678955078125,-0.01374053955078125,0.0204925537109375,-0.0129852294921875,0.00595855712890625,0.02716064453125,-0.00414276123046875,-0.020843505859375,-0.025299072265625,0.038055419921875,0.011322021484375,0.0506591796875,0.033355712890625,-0.003208160400390625,0.0274200439453125,-0.007068634033203125,-0.0195465087890625,-0.00734710693359375,-0.054443359375,0.0321044921875,0.0213623046875,-0.00846099853515625,-0.0292816162109375,0.02484130859375,-0.016937255859375,-0.0186004638671875,-0.006206512451171875,0.0233917236328125,-0.0389404296875,0.0180511474609375,0.0056915283203125,-0.01325225830078125,-0.0059814453125,0.032867431640625,0.0148773193359375,0.0294952392578125,-0.0633544921875,0.03057861328125,-0.01910400390625,-0.01788330078125,0.0014448165893554688,-0.01238250732421875,0.0306854248046875,-0.0159912109375,-0.00717926025390625,-0.039031982421875,0.0187225341796875,0.012420654296875,-0.01404571533203125,0.01078033447265625,0.0112457275390625,0.031768798828125,-0.0028629302978515625,-0.0223236083984375,0.021575927734375,-0.021575927734375,0.01470947265625,0.004413604736328125,0.045379638671875,0.0065460205078125,-0.011932373046875,-0.03216552734375,-0.035308837890625,0.01140594482421875,0.0093994140625,-0.0016632080078125,0.0052947998046875,0.033477783203125,0.0241241455078125,0.007030487060546875,-0.00409698486328125,0.014892578125,0.00023603439331054688,0.00774383544921875,-0.018310546875,-0.00009006261825561523,-0.013580322265625,0.0075225830078125,-0.0350341796875,0.01267242431640625,-0.0203704833984375,-0.01401519775390625,0.02978515625,-0.002971649169921875,0.006145477294921875,-0.0223846435546875,-0.0235748291015625,-0.01641845703125,-0.010162353515625,0.02093505859375,-0.00672149658203125,-0.021881103515625,0.022247314453125,0.0380859375,0.024566650390625,0.024505615234375,-0.0202484130859375,-0.0057373046875,0.005321502685546875,-0.0164947509765625,-0.005893707275390625,-0.0214385986328125,-0.01202392578125,0.01152801513671875,-0.01026153564453125,-0.0242156982421875,0.00939178466796875,0.0157928466796875,-0.00605010986328125,-0.019378662109375,-0.006000518798828125,0.03375244140625,-0.02471923828125,0.03155517578125,0.00339508056640625,-0.01171875,0.0226287841796875,0.007476806640625,-0.040435791015625,0.006622314453125,"019d6bd8-a30c-720e-b82e-94ac62042df7","https:\u002F\u002Fblog.vueschool.io\u002Fwp-content\u002Fuploads\u002F2026\u002F04\u002Ffeature-v2.jpg",true,"2026-04-03T17:04:54.000Z","generating-random-ids-in-vuejs","019d6bd5-87de-77ef-ac92-98aa56cda920","VueSchool","vueschool","https:\u002F\u002Fvueschool.io","The article discusses the new useId() helper introduced in Vue 3.5, which generates unique identifiers for DOM elements, ensuring consistency between server and client renders. It highlights the importance of unique IDs for accessibility and SSR safety, providing examples of common use cases and basic implementation in Vue components.","Generating Random IDs in Vue.js","2026-04-08T06:47:42.447Z","https:\u002F\u002Fblog.vueschool.io\u002Fvuejs-tutorials\u002Fgenerating-random-ids-in-vue-js\u002F?friend=MOKKAPPS",{"clickCount":1404,"viewCount":1405},17,40,[1407,1416,1425],{"id":1408,"image":1409,"publishedAt":1410,"slug":1411,"sourceName":1412,"summary":1413,"title":1414,"url":1415},"019f76d0-85d1-75ad-b055-ca88182f4c34","https:\u002F\u002Fnuxt.com\u002Fassets\u002Fblog\u002Fv4.5.png","2026-07-18T00:00:00.000Z","nuxt-45","Nuxt Blog","Nuxt 4.5 marks a significant release featuring Vite 8, Rspack 2, experimental SSR streaming, and a stable error code system. The update also introduces a new useLayout composable and named views, laying the groundwork for future developments in Nuxt 5.","Nuxt 4.5","https:\u002F\u002Fnuxt.com\u002Fblog\u002Fv4-5",{"id":1417,"image":1418,"publishedAt":1419,"slug":1420,"sourceName":1421,"summary":1422,"title":1423,"url":1424},"019f374c-d2f0-769a-8a4f-180c7f565bd4","https:\u002F\u002Fmedia2.dev.to\u002Fdynamic\u002Fimage\u002Fwidth=1200,height=627,fit=cover,gravity=auto,format=auto\u002Fhttps%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fevhhwr5be00v4h9dmmxi.png","2026-07-06T08:38:53.000Z","enforce-better-vue-architecture-with-eslint","Jakub Andrzejewski","This article discusses how ESLint can be leveraged to enforce a consistent architecture and coding standards in Vue applications. It highlights the importance of using ESLint beyond formatting, showcasing its ability to maintain project-wide patterns, improve code review processes, and ensure best practices in Vue development, particularly with the Composition API.","Enforce Better Vue Architecture with ESLint","https:\u002F\u002Fdev.to\u002Fjacobandrewsky\u002Fenforce-better-vue-architecture-with-eslint-3fb0",{"id":1426,"image":1427,"publishedAt":1428,"slug":1429,"sourceName":1430,"summary":1431,"title":1432,"url":1433},"019f1e68-a398-7614-a565-37bb57fd85c8","https:\u002F\u002Fapi.certificates.dev\u002Fstorage\u002FlAB305vJFYD8SXv60gboztHN0tgrQaSTFlfCfQhq.png","2026-07-01T06:00:00.000Z","performance-optimization-in-nuxt","Certificates.dev","This article discusses practical techniques for optimizing the performance of Nuxt applications, focusing on methods to achieve faster load times and improved user experience.","Performance Optimization in Nuxt","https:\u002F\u002Fcertificates.dev\u002Fblog\u002Fperformance-optimization-in-nuxt?friend=MOKKAPPS",[1435,1439,1442,1445],{"color":1436,"id":1437,"name":1438,"slug":1438},"#10b981","019d6bd8-c9a8-7783-bd22-03145b355427","vue",{"color":1436,"id":1440,"name":1441,"slug":1441},"019d6bd8-ca21-71c5-a236-37d94fe57d24","composition-api",{"color":1436,"id":1443,"name":1444,"slug":1444},"019d6bd8-ca89-735e-a52a-ee53a80a77a9","ssr",{"color":1436,"id":1446,"name":1447,"slug":1447},"019d6bd8-caef-76b9-bacd-363e31e6d2a9","accessibility"]