[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"contentNavigation":3,"newsletter-stats":4,"$fQa3xUpnRDPNiFFu2QS4K-DAjYmsapeR9fNhPNBdpkOc":-1,"news-article-vibe-coding-a-collaborative-editor-with-comment-support-with-nuxt-ui-and-jazz":6},[],{"confirmedCount":5},405,{"article":7,"engagement":1419,"relatedArticles":1422,"tags":1450},{"content":8,"createdAt":9,"embedding":10,"id":1406,"image":1407,"isAffiliate":1408,"isPublished":1408,"publishedAt":1409,"slug":1410,"sourceId":1411,"sourceName":1412,"sourceSlug":1413,"sourceType":1413,"sourceUrl":1414,"summary":1415,"title":1416,"updatedAt":1417,"url":1418},"I first started this article with the intention of teaching you how to combine Nuxt UI's Editor component with Jazz's collaborative rich text model to build a real-time shared editing experience in Nuxt. But then I realized that I was using AI to do a lot of the heavy lifting for me. Given the day and age we live in, you'd likely use AI to do the same thing. So instead of walking you through the text step by step, I'm going to take a different approach. Here's the plan: I'll start by explaining why I wanted to build this in the first place. Next I'll show off the final result and show you how you can use it for yourself if you'd like. Then I'll give you a list of takeaways on building with AI that: I learned during the process I've learned in the past but came up during this build Why I Thought Building the Nuxt UI Collaborative Editor Was a Good Idea Sure there are some off the shelf solutions for rich text editing with comments, but I'm pretty married to the Nuxt ecosystem. So I said, &quot;why not!? Let's give it a go!&quot; Furthermore, the control over the source code means I can also extend it in ways that I couldn't do with a pre-built solution. A Nuxt UI Collaborative Editor with Comment Support: the Final Result So what exactly did I build? Here's what's included in the final result: A Nuxt UI Editor component with a toolbar that handles the edit and display of rich text Support for multiple users to edit the same document together in real-time (courtesy of Jazz.) Support for comments tied to specific highlighted text in the editor Image upload, sizing, and alignment support A editing optimized layout that keeps the editor front and center while showing comments conditionally in a sidebar. The ability to add replies to comments The ability to mark comments as &quot;resolved&quot; 👉 You can demo the editor for yourself here How to Use the Nuxt UI Collaborative Editor with Comment Support If you want to use it for yourself, you can clone the demo repository, get an API key for Jazz at jazz.tools, and run it locally: git clone https:\u002F\u002Fgithub.com\u002Fdanielkellyio\u002Fnuxt-jazz-collaborative-editor-with-comments.git cd nuxt-jazz-collaborative-editor-with-comments npm install npm run dev Feel free to use it as a starting point for your own projects or copying and pasting the code existing codebases. A List of Takeaways on Building with AI While AI is a great tool, it's not 100% intuitive on how to use it to your advantage. unlearn.dev is a great resource for mastering the art of wielding it effectively. It's a full collection of workflows and strategies. Until then, here's a short list of takeaways on building with AI specfic to this project. Choosing the right tools for the job goes a long way. What do I mean? Well, I've never used Jazz before but given the exact use case it's meant to solve (multi-user real-time data syncing), it was a great fit for the job. (Thanks Alexander Opalic for turning me on to it!). The library's llms.txt was easy to pass on to my AI agent. I'm often tempted to reach for built-in REST api endpoints via Nitro, but it's worth exlporing new depenedencies when a better fit is available. Telling the Agent to iterate using the browser The editor setup was super simple, it's just the Nuxt UI editor component with it's companion Toolbar. Making it collaborative was also extremely easy with Jazz. However, things started getting a little harrier when I attempted to add comments support. The AI agent wanted to take the easiest path even though it didn't result in the best UI\u002FUX. So I told it: &quot;Iterate until it's a notion style commenting UI. localhost:3000 Use the browser.&quot; This forced it to: Do more of the work autonomously while I worked on other things Gave it tools to check it's own work And gave it a clearer goal without a lot of extra context creation on my part That leads me to... Mention existing projects that are similar to the one you're building Just like I mentioned &quot;Notion&quot;, if there's another popular solution similar to what you're attempting, defitintely mention it. The process let's you get more thoughts out of your head and into the context without having to spell it all out. Do note of course this only works when the tool you're mentioning are big enough that the model knows a thing or 2 about them. Screenshots of lesser known tools go a long way too! Work with different agents at the same time on non-overlapping tasks Yes, I know that we can work with multiple agents with worktrees or in the cloud on different branches, and so on. But it can still be more back and forth than necessary and some merge conflicts that take time to resolve. To help me keep my focus, while not just sipping on coffee and waiting for the agent to finish, I'll often work with different agents at the same time on non-overlapping tasks. These are tasks that both relate to the current objective and exist in the same branch but I know won't touch the same lines of code. For example, during this build, I worked with one agent on the image upload support while simultaneously working on some of the comment UI that I knew was pretty isolated. I've also found this helpful when building homepages or landing pages with multiple sections. Each section will get it's own component and I can jump back and forth between agents on each section to dial them in without worrying about conflicts. Look for opportunities for smart abstraction It didn't take looking at the code to know that Jazz isn't purpose built for use with Vue. It has Svelte docs and React docs but non for my favorite framework. So experience told me that my code would be DRY-er and more maintainable if one of the first tasks I undertook was to create a reactive wrapper around the Jazz API. So after the initial documention collaboration was working, I instructed the agent: &quot;could we make a reusable composable for wrapping jazz models with Vue reactive state?&quot; Of course, it was very obliging and created a useJazzReactiveState composable that ended up being used for both comments and document title syncing. Asking the agent to commit along the way Sometimes I'm happy with the state of the code but I'm working in a view that doesn't give me easy access to the terminal (for example, cursor's new Agent Window—which is awesome by the way!). So instead of changing context, I'll simply ask the agent to commit the changes in the same breath I tell it to continue working on the next new task. It's an easy thing but a quick way to stay in the flow. I did this on many occasions throughout this build. Don't be afraid to abort and start over At one point, I attempted to add supprt for viewing different users cursors (like in Notion or Google docs). The agent got a great rough draft of it, but it was too buggy and added complexity that just wasn't worth it. So I simply aborted the task and moved on to another. Ask your agent to &quot;simplify&quot; the implementation When first implementing the comments, it randomly decided to use one data structure for the Jazz models and then another when displaying the comments to the UI requiring a transform between the two. I simply asked it to &quot;simplify&quot; the implementation removed the extra transformation step. Combine multiple stratgies for the best results At one point the AI agent just failed to get the &quot;resolve&quot; feature for comments correctly so I I stated: &quot;now it's not persisting to Jazz appropriately. Simplify and make work. Use the browser to iterate so that: Resolving a comment immediately triggers the proper UI updates Re-opening a component does the opposite All this saves with Jazz&quot; Sometimes it's helpful for it to just take a step back and try a different approach with clear objectives in mind and the right direction for how to test it's steps. Conclusion Building with AI is a lot of fun and it's a great way to get things done quickly. It's by no means a magic bullet but a project like this would have taken me days if not weeks to build before. Now it only took 3-4 hours (and that's with writing this article too!).","2026-04-30T04:18:57.269Z",[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,29,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,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,41,119,120,121,122,123,124,125,126,127,128,129,130,80,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,117,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,106,187,188,189,190,191,192,193,194,37,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,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,115,290,289,291,292,293,294,295,296,161,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,11,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,116,107,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,115,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,183,430,431,432,433,434,435,436,437,438,439,440,441,442,363,443,444,445,446,447,448,449,450,242,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,387,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,282,495,496,497,206,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,394,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,84,537,538,539,540,541,542,543,544,545,546,547,548,374,549,550,551,552,553,554,555,556,557,558,559,560,561,562,440,563,564,565,11,566,567,568,569,570,571,572,573,574,575,576,302,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,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,507,620,621,622,623,175,624,625,626,627,628,629,630,631,632,633,634,635,636,637,364,638,639,640,641,642,643,644,645,646,192,647,648,649,650,651,652,653,654,655,656,657,546,658,659,131,660,661,204,662,663,664,665,666,667,77,668,669,670,671,672,243,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,341,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,248,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,569,746,747,748,749,750,751,752,753,754,755,537,756,757,758,759,760,761,762,763,764,765,37,766,767,204,768,769,770,771,772,629,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,250,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,356,837,838,839,840,841,659,842,843,844,845,846,847,848,849,850,851,530,852,722,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,879,880,881,882,883,884,885,886,887,888,889,890,187,891,892,235,893,894,895,896,897,898,899,402,900,901,902,903,904,569,905,906,907,908,909,910,911,912,913,83,914,915,916,917,918,919,920,921,922,67,923,924,925,926,927,928,929,930,931,932,933,934,935,469,936,937,938,939,940,941,942,943,944,945,946,561,947,948,949,644,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,482,987,988,791,989,990,991,992,993,994,995,996,997,998,999,700,1000,1001,1002,1003,901,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,517,1015,1016,1017,667,1018,1019,1020,997,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1024,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,526,1041,1042,1043,1044,1045,1046,958,1047,1048,1049,1050,1051,1052,1053,1054,961,1055,1056,1057,1058,1059,1060,1061,1062,1063,138,434,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,83,1074,704,220,1075,1076,1077,1078,1079,985,1080,1081,708,1082,1083,1084,1085,1086,1087,232,642,1088,1089,269,859,560,64,1090,1091,1092,1093,1094,1095,1096,1097,1098,115,1099,1100,1101,230,1102,1103,1104,1105,1106,1107,150,1108,1109,1110,1111,1112,1113,1114,1115,257,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,257,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1036,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,565,1150,1151,175,1152,1153,760,1082,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1010,1167,135,1168,888,1169,1170,1171,1172,1173,1174,1175,975,531,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,498,1190,932,752,1191,1192,1193,1194,1195,1196,1197,607,882,1198,1199,1200,1201,1202,1203,1204,1205,957,1206,1207,1208,35,1209,1210,1211,1212,368,1213,1214,1215,1216,1217,1218,1219,1220,963,1221,1222,1223,107,1224,1225,983,1226,1137,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1146,1237,1238,1239,1240,407,1241,869,1242,1243,1244,1245,594,720,1246,419,1247,1248,1249,1250,1251,1252,1253,1254,1255,894,1256,738,1257,1258,1259,1189,292,540,1260,1261,1262,1263,1264,1265,155,1266,1267,1268,1269,1270,1106,1271,1272,1273,1274,1275,746,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,730,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,292,1306,1307,1308,1309,1310,548,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,26,1340,1341,1342,1343,376,74,1344,1345,621,1346,1347,1348,781,712,1349,1350,1351,1352,1353,1354,1355,1356,1357,239,1358,1359,1360,1361,1362,1363,1364,1365,781,39,1366,1367,1368,1369,1370,663,1371,1372,1373,1231,1191,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,566,1385,810,1386,1146,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,959,1402,1403,1404,791,1405,731],-0.0277252197265625,0.01016998291015625,-0.0239105224609375,-0.0279998779296875,0.0302276611328125,-0.002410888671875,0.00690460205078125,0.06756591796875,-0.00667572021484375,0.0027294158935546875,0.050506591796875,-0.0244293212890625,0.00033211708068847656,0.0275726318359375,-0.00659942626953125,0.0269012451171875,0.004566192626953125,-0.03533935546875,0.039337158203125,0.0384521484375,-0.01012420654296875,0.006805419921875,0.035614013671875,0.06817626953125,0.03509521484375,-0.027801513671875,-0.0382080078125,0.07440185546875,-0.017486572265625,-0.004940032958984375,-0.032135009765625,-0.0117340087890625,0.031494140625,0.01776123046875,-0.031280517578125,-0.0082855224609375,0.04852294921875,0.00321197509765625,-0.0010433197021484375,0.03216552734375,-0.0279693603515625,0.0160675048828125,0.058258056640625,0.03558349609375,0.004543304443359375,0.01560211181640625,0.009521484375,0.0150146484375,0.0009140968322753906,0.034759521484375,-0.00113677978515625,0.003261566162109375,-0.0335693359375,-0.033355712890625,-0.03125,-0.04937744140625,0.0200653076171875,-0.02630615234375,0.0031261444091796875,0.050689697265625,-0.056549072265625,-0.0033664703369140625,0.033721923828125,-0.030426025390625,-0.03729248046875,-0.03912353515625,-0.04168701171875,0.006870269775390625,0.048553466796875,0.0208282470703125,-0.017242431640625,0.00250244140625,-0.020843505859375,0.004726409912109375,-0.04888916015625,-0.0013856887817382812,-0.004207611083984375,0.03082275390625,-0.055389404296875,0.0140533447265625,0.026824951171875,-0.039825439453125,-0.0289459228515625,-0.023956298828125,-0.00502777099609375,0.004154205322265625,-0.0018815994262695312,-0.06243896484375,-0.021331787109375,-0.05584716796875,0.024383544921875,-0.0452880859375,0.03387451171875,0.055938720703125,0.022552490234375,-0.02545166015625,-0.0217437744140625,0.00893402099609375,0.0252227783203125,0.00495147705078125,-0.0285797119140625,-0.031982421875,-0.03131103515625,0.06298828125,0.0215301513671875,0.0450439453125,-0.021270751953125,-0.0504150390625,-0.08050537109375,0.004734039306640625,-0.0203094482421875,-0.004589080810546875,-0.004131317138671875,-0.06390380859375,0.033538818359375,-0.0196685791015625,-0.019256591796875,-0.044830322265625,-0.01041412353515625,-0.0124969482421875,-0.0178070068359375,0.0216217041015625,-0.037689208984375,-0.050750732421875,-0.026702880859375,-0.018890380859375,-0.034820556640625,0.005443572998046875,-0.0038509368896484375,0.024505615234375,-0.06109619140625,-0.03582763671875,0.0268707275390625,0.029754638671875,0.0014743804931640625,-0.0302734375,0.003955841064453125,0.0236358642578125,-0.0116729736328125,0.0255889892578125,0.00457763671875,-0.0166778564453125,-0.022918701171875,0.01044464111328125,0.021881103515625,-0.06256103515625,0.00548553466796875,-0.07781982421875,-0.0400390625,-0.018157958984375,0.01251983642578125,-0.001712799072265625,-0.01351165771484375,0.008697509765625,-0.0165557861328125,-0.029327392578125,-0.04376220703125,-0.0122528076171875,-0.036773681640625,0.0011682510375976562,0.00981903076171875,-0.0232391357421875,-0.038909912109375,-0.0024662017822265625,-0.0350341796875,0.011444091796875,-0.02227783203125,-0.05718994140625,0.013336181640625,0.061248779296875,0.07733154296875,-0.0465087890625,0.03643798828125,-0.043365478515625,-0.00876617431640625,0.03851318359375,0.0146636962890625,0.00084686279296875,0.019134521484375,-0.09381103515625,-0.01529693603515625,-0.033538818359375,0.01141357421875,-0.0193328857421875,-0.0140838623046875,0.01558685302734375,-0.0479736328125,0.043975830078125,0.06671142578125,-0.00531005859375,0.019989013671875,0.00782012939453125,0.007110595703125,-0.0248870849609375,0.0069732666015625,0.034210205078125,-0.0111846923828125,-0.0206298828125,0.0228271484375,0.023345947265625,-0.01303863525390625,-0.0284423828125,0.032470703125,-0.030670166015625,0.0232391357421875,0.034912109375,-0.0182647705078125,0.018463134765625,-0.0201263427734375,-0.0300750732421875,0.0056610107421875,0.03497314453125,-0.042266845703125,-0.02105712890625,-0.03277587890625,-0.01953125,0.0421142578125,-0.012359619140625,0.0290069580078125,0.01531219482421875,0.026275634765625,-0.024658203125,-0.0003948211669921875,0.02569580078125,0.0430908203125,-0.0184478759765625,-0.0736083984375,-0.0259552001953125,0.034149169921875,0.02984619140625,-0.04345703125,-0.0167388916015625,0.00371551513671875,0.0306549072265625,-0.017913818359375,-0.035186767578125,0.0301055908203125,0.01477813720703125,0.001293182373046875,0.0224609375,-0.0281219482421875,-0.01467132568359375,0.0013723373413085938,0.0201416015625,0.060638427734375,0.039947509765625,0.01322174072265625,0.0186309814453125,-0.0013523101806640625,-0.043426513671875,0.0005331039428710938,0.10870361328125,0.031097412109375,0.0121002197265625,-0.01849365234375,-0.0255126953125,-0.03155517578125,0.011962890625,0.0115966796875,0.0260772705078125,0.0277557373046875,0.0400390625,0.004364013671875,0.014923095703125,-0.003643035888671875,0.00510406494140625,0.013946533203125,-0.00595855712890625,0.00977325439453125,0.00925445556640625,0.00025653839111328125,-0.00711822509765625,-0.0107269287109375,0.061492919921875,-0.06005859375,-0.036712646484375,0.0130462646484375,0.04443359375,0.014862060546875,-0.023895263671875,0.0160369873046875,0.0328369140625,0.032135009765625,0.0269927978515625,-0.0007510185241699219,-0.021759033203125,0.016998291015625,0.07568359375,-0.022613525390625,0.0022182464599609375,0.0112457275390625,0.026153564453125,-0.00347900390625,0.0284423828125,-0.004058837890625,0.0035991668701171875,0.0528564453125,-0.01092529296875,-0.0260772705078125,0.013916015625,0.01068878173828125,0.008819580078125,0.037506103515625,-0.04058837890625,-0.03497314453125,-0.048919677734375,-0.00439453125,0.0304718017578125,0.0031337738037109375,0.0182342529296875,0.023406982421875,-0.0225372314453125,0.0280303955078125,-0.0216522216796875,0.003780364990234375,-0.0181427001953125,0.002483367919921875,-0.01031494140625,-0.01209259033203125,-0.0030040740966796875,-0.03643798828125,-0.055511474609375,-0.002910614013671875,0.05255126953125,0.0159759521484375,-0.10015869140625,0.004528045654296875,-0.004791259765625,0.021392822265625,0.00870513916015625,-0.0218963623046875,-0.0408935546875,-0.0206146240234375,0.0162200927734375,0.0266265869140625,-0.028350830078125,-0.01531219482421875,-0.00893402099609375,0.004711151123046875,0.01497650146484375,-0.013427734375,-0.0151519775390625,0.011322021484375,-0.0177154541015625,0.049407958984375,0.00555419921875,-0.0294189453125,-0.0115966796875,-0.045684814453125,-0.0238494873046875,-0.04656982421875,-0.04302978515625,-0.0149383544921875,0.0139007568359375,-0.039215087890625,0.00705718994140625,-0.0097198486328125,-0.039764404296875,-0.0118408203125,0.01812744140625,0.01232147216796875,-0.0024929046630859375,-0.0750732421875,0.0036163330078125,-0.0007147789001464844,0.0203094482421875,-0.0176239013671875,0.0205078125,0.01666259765625,-0.00043511390686035156,-0.0033740997314453125,0.01100921630859375,0.0150604248046875,-0.00406646728515625,0.056488037109375,-0.03887939453125,-0.0157318115234375,0.0325927734375,-0.0166473388671875,-0.055938720703125,-0.0511474609375,0.00982666015625,0.0526123046875,-0.01197052001953125,0.053558349609375,0.008392333984375,0.055999755859375,0.0126800537109375,0.0635986328125,-0.00284576416015625,-0.02386474609375,0.0095062255859375,-0.0205078125,0.0036945343017578125,0.004322052001953125,0.0202484130859375,-0.0299224853515625,-0.005176544189453125,-0.0201873779296875,0.02398681640625,-0.00455474853515625,0.002330780029296875,0.020050048828125,-0.003063201904296875,-0.0011577606201171875,0.04437255859375,0.10137939453125,0.0016527175903320312,-0.01214599609375,0.01007080078125,-0.0279541015625,0.04693603515625,-0.0174560546875,0.027801513671875,-0.0273284912109375,0.033294677734375,-0.016448974609375,-0.028656005859375,0.0117340087890625,-0.0120391845703125,0.01456451416015625,-0.006832122802734375,-0.024505615234375,0.0355224609375,0.0267181396484375,0.01490020751953125,-0.003856658935546875,0.0182037353515625,-0.0088653564453125,0.03045654296875,-0.01294708251953125,-0.023040771484375,-0.02886962890625,-0.019989013671875,-0.039276123046875,-0.0214080810546875,0.0008320808410644531,0.059051513671875,0.014801025390625,-0.03228759765625,0.03271484375,0.0186767578125,0.033905029296875,0.01061248779296875,-0.0033779144287109375,0.02178955078125,-0.01163482666015625,0.00629425048828125,0.0238189697265625,-0.010345458984375,-0.0007071495056152344,0.038421630859375,0.00006002187728881836,0.00899505615234375,-0.036590576171875,0.020721435546875,-0.009002685546875,-0.05645751953125,-0.031097412109375,0.006072998046875,0.00995635986328125,-0.005832672119140625,-0.00458526611328125,-0.05560302734375,-0.03094482421875,-0.061187744140625,0.0294952392578125,-0.0099029541015625,0.059600830078125,-0.0256500244140625,-0.020477294921875,0.0254669189453125,0.004329681396484375,0.0034160614013671875,0.01702880859375,0.0222625732421875,-0.012725830078125,-0.002140045166015625,-0.0181884765625,-0.0310516357421875,-0.009674072265625,0.0089569091796875,-0.0255889892578125,-0.0006489753723144531,-0.0103302001953125,0.029632568359375,0.000782012939453125,0.025177001953125,0.011749267578125,0.01031494140625,0.046295166015625,0.0084991455078125,-0.0011491775512695312,0.048431396484375,0.0247955322265625,0.0045013427734375,-0.01727294921875,-0.0567626953125,0.031005859375,-0.010406494140625,0.00684356689453125,-0.0254669189453125,-0.001537322998046875,0.002017974853515625,-0.0276947021484375,-0.00453948974609375,-0.0252838134765625,-0.03570556640625,-0.017974853515625,-0.04119873046875,-0.01332855224609375,-0.03424072265625,0.005016326904296875,-0.01407623291015625,-0.06646728515625,-0.048187255859375,0.01428985595703125,-0.006893157958984375,0.000015735626220703125,-0.0037784576416015625,-0.0248565673828125,0.0175018310546875,0.0017061233520507812,0.0009570121765136719,-0.00556182861328125,0.01751708984375,-0.0318603515625,0.0010890960693359375,0.0034618377685546875,0.043212890625,-0.057586669921875,0.0003559589385986328,0.00959014892578125,0.016448974609375,0.0321044921875,0.0272064208984375,0.0390625,-0.00527191162109375,0.011993408203125,0.0043487548828125,0.0209197998046875,-0.004291534423828125,-0.039031982421875,-0.0031070709228515625,0.01080322265625,-0.0267791748046875,-0.02197265625,0.04815673828125,-0.0077362060546875,-0.0085601806640625,0.03668212890625,0.0189208984375,0.0188446044921875,-0.01456451416015625,-0.013214111328125,0.035430908203125,-0.0113067626953125,-0.03759765625,-0.013763427734375,0.0218505859375,-0.044525146484375,0.05865478515625,0.03192138671875,-0.038238525390625,0.01462554931640625,0.0196075439453125,0.03173828125,0.00557708740234375,0.016876220703125,-0.02264404296875,-0.0092315673828125,-0.0026912689208984375,-0.012939453125,-0.014862060546875,0.0003101825714111328,0.003681182861328125,-0.01415252685546875,-0.0224456787109375,-0.01538848876953125,-0.00820159912109375,0.00434112548828125,0.0811767578125,-0.0150909423828125,-0.019378662109375,-0.0021495819091796875,0.0125274658203125,-0.007198333740234375,0.002353668212890625,-0.01525115966796875,-0.00788116455078125,-0.006256103515625,0.01267242431640625,0.0019588470458984375,0.02996826171875,-0.0189666748046875,-0.0203704833984375,-0.01372528076171875,0.0073699951171875,-0.00783538818359375,-0.0170440673828125,0.018280029296875,0.001873016357421875,-0.04693603515625,0.0204010009765625,0.0114898681640625,-0.005680084228515625,0.0357666015625,0.00839996337890625,0.018707275390625,-0.03387451171875,0.031219482421875,0.004730224609375,-0.034210205078125,-0.01140594482421875,0.00150299072265625,0.0285491943359375,0.00031495094299316406,0.00986480712890625,-0.0085906982421875,-0.00543212890625,0.00643157958984375,0.01183319091796875,-0.006011962890625,-0.02667236328125,-0.0038318634033203125,0.0104217529296875,0.0290679931640625,-0.007183074951171875,0.00594329833984375,0.0261993408203125,-0.01412200927734375,0.0229644775390625,-0.00263214111328125,-0.046661376953125,0.0064697265625,0.00568389892578125,0.0233001708984375,-0.03668212890625,0.015869140625,-0.01617431640625,0.037078857421875,-0.00334930419921875,0.0310516357421875,0.0032978057861328125,0.00438690185546875,0.054443359375,-0.026580810546875,-0.051910400390625,0.02685546875,0.01552581787109375,0.019378662109375,0.0007009506225585938,0.0192108154296875,-0.0078277587890625,-0.030181884765625,0.00811767578125,0.0088348388671875,0.024932861328125,0.0186920166015625,0.008544921875,0.00582122802734375,-0.01007843017578125,0.020751953125,0.0241546630859375,0.0112762451171875,-0.030029296875,-0.00917816162109375,-0.01102447509765625,0.008758544921875,0.0084228515625,-0.01239013671875,-0.027099609375,0.01454925537109375,-0.0285186767578125,0.033477783203125,-0.0137786865234375,-0.054901123046875,0.01953125,-0.0267181396484375,-0.00010192394256591797,-0.01346588134765625,-0.0274505615234375,0.0214691162109375,0.00162506103515625,-0.04364013671875,-0.026397705078125,0.005218505859375,-0.04736328125,-0.0299530029296875,-0.019195556640625,-0.036102294921875,-0.008575439453125,0.049835205078125,-0.031707763671875,0.0108489990234375,-0.0297698974609375,-0.01812744140625,0.0172882080078125,-0.013275146484375,0.0052642822265625,0.021209716796875,-0.0300445556640625,0.012298583984375,-0.048583984375,-0.01229095458984375,-0.0141754150390625,-0.0006208419799804688,0.0288543701171875,0.017669677734375,-0.0022830963134765625,-0.0012140274047851562,0.03973388671875,-0.0343017578125,0.01218414306640625,-0.045745849609375,0.009613037109375,-0.035736083984375,-0.006610870361328125,-0.033905029296875,-0.0303497314453125,0.00279998779296875,-0.07232666015625,0.0219268798828125,0.01331329345703125,0.0158538818359375,0.0220947265625,-0.021514892578125,0.01181793212890625,0.020355224609375,0.022979736328125,0.035400390625,0.01386260986328125,-0.00109100341796875,0.01371002197265625,-0.0218505859375,-0.041259765625,0.01392364501953125,0.0215606689453125,-0.042388916015625,-0.02471923828125,-0.0024051666259765625,-0.0150604248046875,-0.0267486572265625,-0.005458831787109375,0.00374603271484375,-0.018280029296875,-0.00800323486328125,-0.027618408203125,0.00789642333984375,0.00732421875,-0.00015473365783691406,-0.0132598876953125,-0.032989501953125,0.010040283203125,-0.0124359130859375,0.013763427734375,0.0233154296875,-0.0308990478515625,0.045623779296875,0.01035308837890625,-0.037445068359375,-0.0025787353515625,-0.0015354156494140625,0.04376220703125,0.04364013671875,0.0033740997314453125,0.01025390625,0.01152801513671875,0.0008649826049804688,-0.0058746337890625,-0.0154876708984375,-0.02099609375,0.00997161865234375,-0.00743865966796875,0.0196685791015625,0.0002346038818359375,-0.00766754150390625,-0.00768280029296875,-0.010833740234375,0.0273284912109375,-0.0272216796875,0.036285400390625,0.01177978515625,0.01187896728515625,-0.0069580078125,0.0048065185546875,0.03887939453125,-0.0308074951171875,-0.0037746429443359375,0.0236663818359375,0.01474761962890625,-0.00460052490234375,-0.004253387451171875,0.02490234375,-0.0091400146484375,0.0021457672119140625,0.00209808349609375,-0.0237274169921875,-0.044219970703125,-0.023468017578125,-0.01171875,-0.0031566619873046875,0.01849365234375,-0.043212890625,-0.0004112720489501953,-0.0005121231079101562,0.0281982421875,0.0012149810791015625,-0.049713134765625,-0.001079559326171875,0.023529052734375,-0.01399993896484375,0.05224609375,0.0014858245849609375,0.0002300739288330078,-0.00890350341796875,0.01126861572265625,-0.0010890960693359375,-0.0176544189453125,-0.0113983154296875,0.0005373954772949219,-0.01441192626953125,0.00835418701171875,-0.024322509765625,-0.03802490234375,-0.01097869873046875,0.02374267578125,-0.019622802734375,0.004306793212890625,-0.02642822265625,0.007617950439453125,0.006893157958984375,-0.00183868408203125,0.01235198974609375,-0.003704071044921875,-0.00931549072265625,0.0295562744140625,0.00974273681640625,-0.00308990478515625,0.039825439453125,-0.0311279296875,0.002838134765625,0.0080413818359375,0.0173797607421875,-0.03179931640625,0.037689208984375,0.0017423629760742188,-0.0133514404296875,0.01345062255859375,-0.0024318695068359375,0.00824737548828125,0.04681396484375,-0.001338958740234375,-0.00009900331497192383,-0.0130462646484375,-0.004955291748046875,0.0024051666259765625,-0.00811767578125,-0.022430419921875,-0.0163116455078125,0.01036834716796875,0.01763916015625,-0.03045654296875,-0.02294921875,0.0278472900390625,0.0093231201171875,0.034454345703125,0.0216827392578125,-0.0006647109985351562,0.0274200439453125,0.018218994140625,0.031463623046875,-0.006008148193359375,-0.042449951171875,-0.0190887451171875,-0.0008993148803710938,-0.033111572265625,-0.027496337890625,0.0006136894226074219,0.002086639404296875,0.0105438232421875,-0.0177459716796875,-0.01146697998046875,0.0157318115234375,-0.0209197998046875,-0.01250457763671875,0.03399658203125,-0.03216552734375,0.01078033447265625,0.0030574798583984375,0.0274505615234375,-0.0222930908203125,0.003818511962890625,-0.004520416259765625,0.00048828125,-0.0169677734375,0.036102294921875,0.03997802734375,-0.0009007453918457031,0.0013065338134765625,0.0164337158203125,0.041534423828125,0.037261962890625,-0.0271759033203125,-0.03338623046875,0.0247344970703125,0.02215576171875,-0.00678253173828125,-0.0007033348083496094,0.023468017578125,-0.0160064697265625,0.0165252685546875,-0.06024169921875,-0.0144500732421875,0.0244140625,-0.00023925304412841797,-0.0213470458984375,-0.01277923583984375,0.0186614990234375,0.0130615234375,0.039703369140625,0.03179931640625,-0.005817413330078125,0.061798095703125,0.0007066726684570312,-0.017608642578125,-0.048370361328125,0.00408935546875,0.037200927734375,0.00917816162109375,-0.011138916015625,-0.0220184326171875,0.0006203651428222656,0.002117156982421875,0.0145721435546875,-0.0008335113525390625,-0.0027618408203125,-0.0018205642700195312,-0.00827789306640625,-0.0278778076171875,-0.0028209686279296875,0.0472412109375,0.0182952880859375,-0.00579833984375,0.02105712890625,-0.01052093505859375,0.0237884521484375,0.0249176025390625,0.0200347900390625,0.00467681884765625,0.0195159912109375,0.00396728515625,-0.012908935546875,0.0119171142578125,-0.046844482421875,-0.001918792724609375,0.002902984619140625,0.020263671875,0.01488494873046875,0.0266571044921875,0.0014276504516601562,-0.002346038818359375,0.05230712890625,-0.0227508544921875,-0.020965576171875,-0.04156494140625,-0.014190673828125,0.0193023681640625,-0.032501220703125,-0.0185394287109375,0.0196533203125,0.01425933837890625,0.0111236572265625,-0.002361297607421875,0.01317596435546875,-0.0109100341796875,-0.002933502197265625,-0.010009765625,0.0160064697265625,0.02166748046875,0.023101806640625,0.034698486328125,-0.0089263916015625,-0.0180206298828125,-0.03436279296875,-0.00201416015625,-0.00959014892578125,0.059661865234375,0.02325439453125,-0.00992584228515625,-0.022552490234375,0.0511474609375,-0.026947021484375,-0.037261962890625,0.0287017822265625,-0.005855560302734375,-0.022186279296875,0.045745849609375,0.006763458251953125,0.0083160400390625,0.00653839111328125,-0.022064208984375,-0.00024962425231933594,0.01303863525390625,0.0175933837890625,0.067626953125,0.03857421875,0.029205322265625,-0.00258636474609375,0.0174560546875,0.0504150390625,-0.028076171875,-0.0115509033203125,-0.0347900390625,0.00890350341796875,-0.01464080810546875,0.0184783935546875,-0.033050537109375,0.0027179718017578125,0.0221405029296875,-0.01125335693359375,-0.00899505615234375,0.045562744140625,0.0256195068359375,-0.032623291015625,0.0206298828125,-0.005489349365234375,-0.0161285400390625,0.026092529296875,-0.00830841064453125,0.01904296875,0.00534820556640625,-0.0211181640625,0.018585205078125,0.06939697265625,0.025421142578125,0.00936126708984375,0.00843048095703125,0.0038471221923828125,0.00464630126953125,-0.006694793701171875,0.002773284912109375,-0.004817962646484375,0.0299072265625,0.0091552734375,0.022796630859375,-0.007167816162109375,-0.006626129150390625,-0.020538330078125,0.00302886962890625,-0.01245880126953125,0.0176239013671875,0.0251007080078125,0.0024890899658203125,-0.02081298828125,0.0167236328125,-0.02679443359375,-0.001438140869140625,-0.0124664306640625,-0.0222320556640625,-0.0193939208984375,0.01387786865234375,-0.0025730133056640625,-0.0218658447265625,-0.00553131103515625,0.0107421875,0.003192901611328125,-0.01235198974609375,0.00653076171875,-0.0108489990234375,-0.0016841888427734375,0.017852783203125,0.006221771240234375,-0.0000635385513305664,0.063720703125,-0.024932861328125,0.00013494491577148438,0.0396728515625,-0.006717681884765625,-0.024017333984375,0.009246826171875,-0.007343292236328125,0.0014925003051757812,-0.0276031494140625,-0.01461029052734375,0.00397491455078125,0.0250091552734375,-0.0277557373046875,0.0035381317138671875,0.0031147003173828125,0.0112152099609375,-0.0172882080078125,0.01154327392578125,-0.00821685791015625,0.02099609375,0.01538848876953125,0.0313720703125,0.0306243896484375,0.0180816650390625,-0.01290130615234375,0.0236053466796875,-0.012664794921875,-0.01177215576171875,0.01139068603515625,-0.031829833984375,0.002727508544921875,0.005157470703125,0.0149383544921875,0.037811279296875,0.0026950836181640625,0.0002617835998535156,0.01329803466796875,0.01302337646484375,0.01397705078125,-0.0094451904296875,0.062103271484375,0.019500732421875,0.019805908203125,-0.004405975341796875,0.013153076171875,0.01268768310546875,0.023956298828125,0.01220703125,-0.0195465087890625,0.02764892578125,-0.01433563232421875,0.0162811279296875,-0.0257720947265625,0.033172607421875,0.02655029296875,-0.02984619140625,0.0099029541015625,0.045074462890625,0.03466796875,0.03057861328125,-0.00824737548828125,0.01412200927734375,0.0343017578125,0.0014019012451171875,0.048797607421875,-0.0179443359375,0.047027587890625,0.0167083740234375,0.007732391357421875,0.01421356201171875,0.0070953369140625,0.017181396484375,0.0171356201171875,-0.051055908203125,-0.0074005126953125,0.0338134765625,0.0469970703125,0.032958984375,-0.018829345703125,-0.047576904296875,-0.0006422996520996094,-0.01219940185546875,-0.0010995864868164062,0.00545501708984375,0.010009765625,-0.00034356117248535156,-0.017669677734375,0.0122833251953125,0.0165557861328125,0.0259552001953125,0.00897216796875,-0.0196075439453125,-0.01436614990234375,-0.00830078125,-0.0236053466796875,-0.01715087890625,-0.043792724609375,0.0014553070068359375,0.0136260986328125,-0.001979827880859375,-0.0177764892578125,-0.006744384765625,-0.01491546630859375,0.0213623046875,-0.039520263671875,-0.01099395751953125,0.01113128662109375,0.0152130126953125,-0.016571044921875,-0.0056915283203125,-0.02435302734375,0.00019502639770507812,-0.007106781005859375,-0.038818359375,0.002216339111328125,0.0021419525146484375,-0.0113525390625,0.034637451171875,0.0174713134765625,0.0191802978515625,0.02838134765625,0.02001953125,-0.0155487060546875,-0.005504608154296875,-0.00015735626220703125,-0.00933837890625,-0.01462554931640625,0.0092620849609375,0.0155029296875,0.006038665771484375,0.016571044921875,-0.00200653076171875,-0.007320404052734375,-0.0265960693359375,0.02947998046875,0.0108184814453125,-0.00649261474609375,-0.0172119140625,-0.0357666015625,-0.01454925537109375,-0.0096588134765625,0.009002685546875,-0.0399169921875,0.01239013671875,-0.016510009765625,0.0235443115234375,0.0119476318359375,-0.0166168212890625,0.0031070709228515625,-0.0021610260009765625,-0.00022482872009277344,-0.0015764236450195312,-0.01202392578125,-0.058837890625,-0.006664276123046875,-0.015350341796875,0.0289306640625,-0.01331329345703125,0.0183563232421875,0.019927978515625,0.0731201171875,-0.00452423095703125,0.022857666015625,0.0011148452758789062,-0.0008392333984375,-0.00921630859375,-0.0005621910095214844,0.0191650390625,-0.0157012939453125,0.019195556640625,-0.00838470458984375,0.025970458984375,-0.00638580322265625,0.039154052734375,-0.0236358642578125,0.01280975341796875,-0.0118255615234375,0.0002505779266357422,-0.009429931640625,0.0184326171875,0.0034351348876953125,-0.005695343017578125,0.004283905029296875,-0.01558685302734375,0.007457733154296875,-0.000009059906005859375,-0.0024166107177734375,-0.00024890899658203125,0.00814056396484375,-0.005825042724609375,0.001155853271484375,-0.0242462158203125,-0.00033736228942871094,0.007312774658203125,-0.051605224609375,0.032562255859375,-0.0044403076171875,0.033966064453125,0.0247802734375,0.0220794677734375,-0.00812530517578125,0.01111602783203125,0.041259765625,0.04339599609375,0.00420379638671875,-0.00499725341796875,-0.0028133392333984375,0.01837158203125,-0.0219268798828125,-0.001102447509765625,-0.0020236968994140625,-0.0208282470703125,-0.032684326171875,0.0001678466796875,0.002475738525390625,0.035888671875,-0.0045318603515625,-0.0112152099609375,-0.0012226104736328125,-0.008392333984375,-0.0048828125,0.001651763916015625,0.0008759498596191406,0.0207061767578125,-0.002841949462890625,0.0242767333984375,0.006198883056640625,0.01021575927734375,-0.05096435546875,-0.002742767333984375,-0.01165008544921875,-0.0207977294921875,0.002552032470703125,-0.007335662841796875,0.0256500244140625,-0.0592041015625,-0.00925445556640625,0.028167724609375,0.0058441162109375,-0.0016613006591796875,0.0029697418212890625,0.00383758544921875,0.007232666015625,0.0204315185546875,-0.0032787322998046875,0.01163482666015625,-0.01010894775390625,-0.0274810791015625,0.0026874542236328125,-0.0032806396484375,-0.0204925537109375,-0.0200042724609375,0.01873779296875,0.029144287109375,0.01393890380859375,-0.02752685546875,-0.0197601318359375,0.0199432373046875,0.01467132568359375,-0.0185699462890625,0.006404876708984375,0.0140380859375,0.0262298583984375,0.01476287841796875,-0.0030422210693359375,0.01158905029296875,0.0204925537109375,0.01085662841796875,-0.02301025390625,0.005641937255859375,-0.039886474609375,0.041656494140625,0.0213775634765625,0.046356201171875,0.01214599609375,-0.017303466796875,-0.00803375244140625,-0.0271453857421875,0.017578125,0.050018310546875,0.0246429443359375,-0.00946044921875,0.052398681640625,0.00225067138671875,0.03546142578125,-0.0261688232421875,-0.01337432861328125,-0.00276947021484375,0.003753662109375,-0.0024089813232421875,-0.00373077392578125,-0.0121307373046875,0.0035839080810546875,0.0379638671875,-0.04278564453125,-0.00567626953125,0.0287933349609375,-0.0028820037841796875,-0.0009336471557617188,-0.01256561279296875,0.0245819091796875,0.024688720703125,0.0209503173828125,-0.056884765625,0.00945281982421875,0.0177001953125,-0.00030517578125,-0.005718231201171875,-0.023406982421875,-0.01213836669921875,-0.0213165283203125,-0.037933349609375,0.0011777877807617188,-0.044189453125,0.017608642578125,-0.032012939453125,0.0248565673828125,-0.020263671875,0.034576416015625,0.0007648468017578125,"019ddc9c-805c-71c8-81be-4ae362cfeb7c","https:\u002F\u002Fblog.vueschool.io\u002Fwp-content\u002Fuploads\u002F2026\u002F04\u002Fcollaborative-editor-example.jpg",true,"2026-04-28T00:00:34.000Z","vibe-coding-a-collaborative-editor-with-comment-support-with-nuxt-ui-and-jazz","019d6bd5-87de-77ef-ac92-98aa56cda920","VueSchool","vueschool","https:\u002F\u002Fvueschool.io","This article explores the creation of a collaborative editor using Nuxt UI and Jazz, focusing on real-time editing and comment support. It discusses the final product's features, including a rich text editor with a toolbar, image upload capabilities, and a layout optimized for collaboration. The author also shares insights on leveraging AI in the development process.","Vibe Coding a Collaborative Editor with Comment Support with Nuxt UI and Jazz","2026-04-30T04:19:01.987Z","https:\u002F\u002Fblog.vueschool.io\u002Fvuejs-tutorials\u002Fvibe-coding-a-collaborative-editor-with-comment-support-with-nuxt-ui-and-jazz\u002F?friend=MOKKAPPS",{"clickCount":1420,"viewCount":1421},0,21,[1423,1432,1441],{"id":1424,"image":1425,"publishedAt":1426,"slug":1427,"sourceName":1428,"summary":1429,"title":1430,"url":1431},"019fa898-f0cd-7411-90ba-41fc972176f5","https:\u002F\u002Fmokkapps.twic.pics\u002Fmokkapps.de\u002Fblog\u002Fhow-to-setup-an-mcp-server-for-an-existing-nuxt-app\u002Fog.png","2026-07-28T00:00:00.000Z","how-to-set-up-an-mcp-server-for-an-existing-nuxt-app","Michael Hoffmann","This article provides a beginner-friendly guide on setting up an MCP server for an existing Nuxt application, utilizing the Nuxt MCP Toolkit along with a mocked weather tool. It aims to help developers integrate this functionality seamlessly into their projects.","How to Set Up an MCP Server for an Existing Nuxt App","https:\u002F\u002Fmokkapps.de\u002Fblog\u002Fhow-to-setup-an-mcp-server-for-an-existing-nuxt-app",{"id":1433,"image":1434,"publishedAt":1435,"slug":1436,"sourceName":1437,"summary":1438,"title":1439,"url":1440},"019fa4bb-e96b-7390-9dd8-103110495e6a","https:\u002F\u002Fnuxt.com\u002Fassets\u002Fblog\u002Fv4.5.1.png","2026-07-27T00:00:00.000Z","nuxt-security-patch-releases","Nuxt Blog","Nuxt has released security patches in versions 4.5.1 and 3.21.10, addressing multiple security vulnerabilities. Additionally, a critical fix has been made in @nuxt\u002Fdevtools 3.3.1, and users are advised to upgrade promptly.","Nuxt Security Patch Releases","https:\u002F\u002Fnuxt.com\u002Fblog\u002Fv4-5-security",{"id":1442,"image":1443,"publishedAt":1444,"slug":1445,"sourceName":1446,"summary":1447,"title":1448,"url":1449},"019f8b69-f573-7149-bd7e-acb240b6fd49","https:\u002F\u002Fi.ytimg.com\u002Fvi\u002FZWUx9bDa8PQ\u002Fhqdefault.jpg","2026-07-22T19:18:25.000Z","html-can-now-do-this-without-javascript-2","John Komarnicki","The article discusses new capabilities of HTML that allow certain functionalities to be achieved without relying on JavaScript. It highlights the implications of these changes for web development, particularly in the context of frameworks like Nuxt.","HTML Can Now Do This Without JavaScript 🪄","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=ZWUx9bDa8PQ",[1451,1455,1458,1461,1464],{"color":1452,"id":1453,"name":1454,"slug":1454},"#10b981","019d6bd8-fad3-70a9-a74d-ab96e3a2f45d","nuxt",{"color":1452,"id":1456,"name":1457,"slug":1457},"019d9d20-e07b-7685-9ebb-fae0b963f243","ai",{"color":1452,"id":1459,"name":1460,"slug":1460},"019ddc9c-9315-735e-a7e8-8424790e8859","nuxt-ui",{"color":1452,"id":1462,"name":1463,"slug":1463},"019ddc9c-931c-743d-a1cb-e4449630fe47","collaboration",{"color":1452,"id":1465,"name":1466,"slug":1466},"019ddc9c-9327-744f-a2da-31b64c7b6ba4","editor"]