Skip to content

Commit c5e1cc5

Browse files
chore: migrate to eslint v9 (nuxt-modules#411)
* chore: migrate to eslint v9 * chore: ignore/fix lint errors * chore: update lockfile * chore: revert changes to docs package * up * up * up * up --------- Co-authored-by: Benjamin Canac <[email protected]>
1 parent 2280667 commit c5e1cc5

30 files changed

+1631
-671
lines changed

.eslintignore

-10
This file was deleted.

.eslintrc.cjs

-16
This file was deleted.

docs/app.config.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ export default defineAppConfig({
1313
search: true,
1414
colorMode: true,
1515
links: [{
16-
icon: 'i-simple-icons-github',
17-
to: 'https://github.com/nuxt-modules/strapi',
18-
target: '_blank',
16+
'icon': 'i-simple-icons-github',
17+
'to': 'https://github.com/nuxt-modules/strapi',
18+
'target': '_blank',
1919
'aria-label': '@nuxtjs/strapi on GitHub'
2020
}]
2121
},
2222
footer: {
2323
colorMode: false,
2424
links: [{
25-
icon: 'i-simple-icons-discord',
26-
to: 'https://discord.com/invite/ps2h6QT',
27-
target: '_blank',
25+
'icon': 'i-simple-icons-discord',
26+
'to': 'https://discord.com/invite/ps2h6QT',
27+
'target': '_blank',
2828
'aria-label': 'Nuxt UI on Discord'
2929
}, {
30-
icon: 'i-simple-icons-x',
31-
to: 'https://x.com/nuxt_js',
32-
target: '_blank',
30+
'icon': 'i-simple-icons-x',
31+
'to': 'https://x.com/nuxt_js',
32+
'target': '_blank',
3333
'aria-label': 'Nuxt on X'
3434
}, {
35-
icon: 'i-simple-icons-github',
36-
to: 'https://github.com/nuxt-modules/strapi',
37-
target: '_blank',
35+
'icon': 'i-simple-icons-github',
36+
'to': 'https://github.com/nuxt-modules/strapi',
37+
'target': '_blank',
3838
'aria-label': '@nuxtjs/strapi on GitHub'
3939
}]
4040
},
@@ -47,17 +47,17 @@ export default defineAppConfig({
4747
icon: 'i-heroicons-star',
4848
label: 'Star on GitHub',
4949
to: 'https://github.com/nuxt-modules/strapi',
50-
target: '_blank',
50+
target: '_blank'
5151
}, {
5252
icon: 'i-simple-icons-nuxtdotjs',
5353
label: 'Nuxt docs',
5454
to: 'https://nuxt.com/docs/getting-started/introduction',
55-
target: '_blank',
55+
target: '_blank'
5656
}, {
5757
icon: 'i-simple-icons-strapi',
5858
label: 'Strapi docs',
5959
to: 'https://docs.strapi.io/dev-docs/intro',
60-
target: '_blank',
60+
target: '_blank'
6161
}]
6262
}
6363
}

docs/app.vue

+6-3
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,21 @@ provide('navigation', navigation)
2929

3030
<template>
3131
<div>
32-
<Header />
32+
<TheHeader />
3333

3434
<UMain>
3535
<NuxtLayout>
3636
<NuxtPage />
3737
</NuxtLayout>
3838
</UMain>
3939

40-
<Footer />
40+
<TheFooter />
4141

4242
<ClientOnly>
43-
<LazyUContentSearch :files="files" :navigation="navigation" />
43+
<LazyUContentSearch
44+
:files="files"
45+
:navigation="navigation"
46+
/>
4447
</ClientOnly>
4548

4649
<UNotifications />

docs/components/Footer.vue docs/components/TheFooter.vue

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@ const { footer } = useAppConfig()
66
<UFooter>
77
<template #left>
88
<span class="text-sm text-gray-500 dark:text-gray-400">
9-
Made with <NuxtLink to="https://ui.nuxt.com/pro" target="_blank" class="text-primary font-semibold relative group hover:underline hover:underline-offset-4">
9+
Made with <NuxtLink
10+
to="https://ui.nuxt.com/pro"
11+
target="_blank"
12+
class="text-primary font-semibold relative group hover:underline hover:underline-offset-4"
13+
>
1014
Nuxt UI Pro
1115

12-
<UIcon name="i-heroicons-arrow-up-right-20-solid" class="w-3 h-3 absolute top-0 -right-3.5 text-gray-400 dark:text-gray-500 group-hover:text-gray-500 dark:group-hover:text-gray-400" />
16+
<UIcon
17+
name="i-heroicons-arrow-up-right-20-solid"
18+
class="w-3 h-3 absolute top-0 -right-3.5 text-gray-400 dark:text-gray-500 group-hover:text-gray-500 dark:group-hover:text-gray-400"
19+
/>
1320
</NuxtLink>
1421
</span>
1522
</template>

docs/components/Header.vue docs/components/TheHeader.vue

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,19 @@ const { header } = useAppConfig()
1212
<Logo class="h-7 w-auto text-primary" />
1313
</template>
1414

15-
<template v-if="header?.search" #center>
15+
<template
16+
v-if="header?.search"
17+
#center
18+
>
1619
<UContentSearchButton class="hidden lg:flex" />
1720
</template>
1821

1922
<template #right>
20-
<UContentSearchButton v-if="header?.search" :label="null" class="lg:hidden" />
23+
<UContentSearchButton
24+
v-if="header?.search"
25+
:label="null"
26+
class="lg:hidden"
27+
/>
2128

2229
<UColorModeButton v-if="header?.colorMode" />
2330

docs/components/content/Logo.vue

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,37 @@
11
<template>
2-
<svg width="1355" height="237" viewBox="0 0 1355 237" fill="none" xmlns="http://www.w3.org/2000/svg">
3-
<path fill-rule="evenodd" clip-rule="evenodd" d="M893.037 200C882.739 200 873.861 197.896 866.039 194C858.348 190.104 851.604 183.143 847.041 176C843.269 169.921 840.865 163.773 840.021 156C839.775 153.739 841.767 151 844.041 151H865.04C865.691 158.662 868.085 166.455 873.039 171C877.993 175.416 883.955 177 892.037 177C899.598 177 905.604 175.987 910.036 173C914.598 169.883 918.035 163.844 918.035 158C918.035 154.104 916.512 151.468 914.036 149C911.559 146.532 907.947 144.299 904.036 143C900.256 141.571 895.686 140.688 889.038 139C879.652 136.662 871.036 133.468 865.04 131C859.173 128.403 854.343 124.455 850.041 119C845.869 113.545 844.041 106.221 844.041 97C844.041 89.5974 846.13 83.7143 850.041 78C854.082 72.1558 859.87 67.1169 867.039 64C874.209 60.7533 881.912 60 891.037 60C900.554 60 908.735 60.4935 916.035 64C923.466 67.3766 929.863 72.6364 934.034 79C937.612 84.2928 939.161 90.2698 940.034 97C940.327 99.2629 939.315 101 937.034 101H916.035C915.384 95.026 913.468 90.6365 909.036 87.0002C904.604 83.3638 898.207 81 891.037 81C884.259 81 878.95 83.1429 875.039 86C871.128 88.8571 869.039 92.1948 869.039 97C869.039 101.026 870.562 104.532 873.039 107C875.646 109.468 878.258 111.571 882.038 113C885.949 114.299 892.128 115.442 899.037 117C908.553 119.208 916.169 121.532 922.035 124C928.031 126.338 932.732 130.545 937.034 136C941.336 141.455 944.033 148.649 944.033 158C944.033 166.312 941.336 173.896 937.034 180C932.732 186.104 926.726 191.623 919.035 195C911.344 198.247 903.075 200 893.037 200ZM1084 119C1076.7 119 1070.52 122.286 1067 128C1063.61 133.584 1062 141.13 1062 151V200H1038.38L1038 99H1062V116C1064.48 109.766 1068.09 105.597 1072 103C1076.04 100.273 1081.61 99 1088 99H1099V119H1084ZM1214 99V237H1238V186C1240.74 189.766 1245.05 193.792 1250 196C1254.95 198.208 1260 200 1266 200C1275.52 200 1283.83 197.156 1291 193C1298.17 188.714 1304.09 182.662 1308 175C1311.91 167.338 1314 158 1314 148C1314 138 1311.78 129.662 1308 122C1304.35 114.338 1298.91 108.156 1292 104C1285.09 99.7143 1277.26 97 1268 97C1261.61 97 1255.21 98.5325 1250 101C1244.79 103.468 1241 106.714 1238 111V99H1214ZM1282.72 171C1277.89 176.455 1271.51 179.182 1263.56 179.182C1255.47 179.182 1248.95 176.455 1244 171C1239.18 165.546 1236.77 157.26 1236.77 148.169C1236.77 139.078 1239.18 131.805 1244 126.351C1248.95 120.896 1255.47 118.169 1263.56 118.169C1271.51 118.169 1277.89 120.896 1282.72 126.351C1287.54 131.805 1289.95 139.078 1289.95 148.169C1289.95 157.26 1287.54 165.546 1282.72 171ZM1331 88C1328.79 88 1327 86.2091 1327 84V60H1351C1353.21 60 1355 61.7909 1355 64V88H1331ZM1355 99.9999V200H1327V99.9999H1355ZM1151 98C1159.31 98 1166.41 99.8318 1173 103C1179.59 106.036 1184.31 110.324 1188 116C1191.82 121.544 1194 127.608 1194 135V200H1167V185C1165.29 189.62 1161.14 194.096 1156 197C1150.99 199.772 1145.85 200 1139 200C1132.67 200 1127.01 199.508 1122 197C1117.12 194.36 1112.77 190.488 1110 186C1107.23 181.38 1106 176.676 1106 171C1106 161.231 1109.41 153.544 1116 148C1122.72 142.324 1131.06 139 1142 139H1159C1161.37 139 1163.68 138.32 1165 137C1166.32 135.548 1167 134.112 1167 132C1167 127.776 1165.16 124.508 1162 122C1158.84 119.36 1154.54 118 1149 118C1143.33 118 1139.3 119.964 1136 123C1132.84 126.036 1130.26 129.512 1130 134H1106C1106.4 127.268 1108.31 121.412 1112 116C1115.69 110.456 1120.41 106.168 1127 103C1133.59 99.8318 1142.17 98 1151 98ZM1146 181C1152.59 181 1157.31 178.224 1161 174C1164.82 169.776 1167 164.6 1167 158V157H1147C1142.78 157 1138.64 157.624 1136 160C1133.36 162.376 1132 166.172 1132 170C1132 173.3 1133.5 175.888 1136 178C1138.5 179.98 1142.18 181 1146 181ZM970 70H997V98.9999H1024V122.001H997V162C997 171.454 1001.64 177 1011 177H1024V200H1008C996.405 200 986.852 196.303 980 190C973.28 183.697 970 175.424 970 164V122.001H951V98.9999H964C967.313 98.9999 970 96.3137 970 93V70Z" fill="currentColor" />
4-
<path d="M377 200C379.16 200 381 198.209 381 196V103C381 103 386 112 395 127L434 194C435.785 197.74 439.744 200 443 200H470V50H443C441.202 50 439 51.4941 439 54V148L421 116L385 55C383.248 51.8912 379.479 50 376 50H350V200H377Z" class="nuxt" />
5-
<path d="M726 92H739C742.314 92 745 89.3137 745 86V60H773V92H800V116H773V159C773 169.5 778.057 174 787 174H800V200H783C759.948 200 745 185.071 745 160V116H726V92Z" class="nuxt" />
6-
<path d="M591 92V154C591 168.004 585.742 179.809 578 188C570.258 196.191 559.566 200 545 200C530.434 200 518.742 196.191 511 188C503.389 179.809 498 168.004 498 154V92H514C517.412 92 520.769 92.622 523 95C525.231 97.2459 526 98.5652 526 102V154C526 162.059 526.457 167.037 530 171C533.543 174.831 537.914 176 545 176C552.217 176 555.457 174.831 559 171C562.543 167.037 563 162.059 563 154V102C563 98.5652 563.769 96.378 566 94C567.96 91.9107 570.028 91.9599 573 92C573.411 92.0055 574.586 92 575 92H591Z" class="nuxt" />
7-
<path d="M676 144L710 92H684C680.723 92 677.812 93.1758 676 96L660 120L645 97C643.188 94.1758 639.277 92 636 92H611L645 143L608 200H634C637.25 200 640.182 196.787 642 194L660 167L679 195C680.818 197.787 683.75 200 687 200H713L676 144Z" class="nuxt" />
8-
<path d="M168 200H279C282.542 200 285.932 198.756 289 197C292.068 195.244 295.23 193.041 297 190C298.77 186.959 300.002 183.51 300 179.999C299.998 176.488 298.773 173.04 297 170.001L222 41C220.23 37.96 218.067 35.7552 215 34C211.933 32.2448 207.542 31 204 31C200.458 31 197.067 32.2448 194 34C190.933 35.7552 188.77 37.96 187 41L168 74L130 9.99764C128.228 6.95784 126.068 3.75491 123 2C119.932 0.245087 116.542 0 113 0C109.458 0 106.068 0.245087 103 2C99.9323 3.75491 96.7717 6.95784 95 9.99764L2 170.001C0.226979 173.04 0.00154312 176.488 1.90993e-06 179.999C-0.0015393 183.51 0.229648 186.959 2 190C3.77035 193.04 6.93245 195.244 10 197C13.0675 198.756 16.4578 200 20 200H90C117.737 200 137.925 187.558 152 164L186 105L204 74L259 168H186L168 200ZM89 168H40L113 42L150 105L125.491 147.725C116.144 163.01 105.488 168 89 168Z" fill="currentColor" />
2+
<svg
3+
width="1355"
4+
height="237"
5+
viewBox="0 0 1355 237"
6+
fill="none"
7+
xmlns="http://www.w3.org/2000/svg"
8+
>
9+
<path
10+
fill-rule="evenodd"
11+
clip-rule="evenodd"
12+
d="M893.037 200C882.739 200 873.861 197.896 866.039 194C858.348 190.104 851.604 183.143 847.041 176C843.269 169.921 840.865 163.773 840.021 156C839.775 153.739 841.767 151 844.041 151H865.04C865.691 158.662 868.085 166.455 873.039 171C877.993 175.416 883.955 177 892.037 177C899.598 177 905.604 175.987 910.036 173C914.598 169.883 918.035 163.844 918.035 158C918.035 154.104 916.512 151.468 914.036 149C911.559 146.532 907.947 144.299 904.036 143C900.256 141.571 895.686 140.688 889.038 139C879.652 136.662 871.036 133.468 865.04 131C859.173 128.403 854.343 124.455 850.041 119C845.869 113.545 844.041 106.221 844.041 97C844.041 89.5974 846.13 83.7143 850.041 78C854.082 72.1558 859.87 67.1169 867.039 64C874.209 60.7533 881.912 60 891.037 60C900.554 60 908.735 60.4935 916.035 64C923.466 67.3766 929.863 72.6364 934.034 79C937.612 84.2928 939.161 90.2698 940.034 97C940.327 99.2629 939.315 101 937.034 101H916.035C915.384 95.026 913.468 90.6365 909.036 87.0002C904.604 83.3638 898.207 81 891.037 81C884.259 81 878.95 83.1429 875.039 86C871.128 88.8571 869.039 92.1948 869.039 97C869.039 101.026 870.562 104.532 873.039 107C875.646 109.468 878.258 111.571 882.038 113C885.949 114.299 892.128 115.442 899.037 117C908.553 119.208 916.169 121.532 922.035 124C928.031 126.338 932.732 130.545 937.034 136C941.336 141.455 944.033 148.649 944.033 158C944.033 166.312 941.336 173.896 937.034 180C932.732 186.104 926.726 191.623 919.035 195C911.344 198.247 903.075 200 893.037 200ZM1084 119C1076.7 119 1070.52 122.286 1067 128C1063.61 133.584 1062 141.13 1062 151V200H1038.38L1038 99H1062V116C1064.48 109.766 1068.09 105.597 1072 103C1076.04 100.273 1081.61 99 1088 99H1099V119H1084ZM1214 99V237H1238V186C1240.74 189.766 1245.05 193.792 1250 196C1254.95 198.208 1260 200 1266 200C1275.52 200 1283.83 197.156 1291 193C1298.17 188.714 1304.09 182.662 1308 175C1311.91 167.338 1314 158 1314 148C1314 138 1311.78 129.662 1308 122C1304.35 114.338 1298.91 108.156 1292 104C1285.09 99.7143 1277.26 97 1268 97C1261.61 97 1255.21 98.5325 1250 101C1244.79 103.468 1241 106.714 1238 111V99H1214ZM1282.72 171C1277.89 176.455 1271.51 179.182 1263.56 179.182C1255.47 179.182 1248.95 176.455 1244 171C1239.18 165.546 1236.77 157.26 1236.77 148.169C1236.77 139.078 1239.18 131.805 1244 126.351C1248.95 120.896 1255.47 118.169 1263.56 118.169C1271.51 118.169 1277.89 120.896 1282.72 126.351C1287.54 131.805 1289.95 139.078 1289.95 148.169C1289.95 157.26 1287.54 165.546 1282.72 171ZM1331 88C1328.79 88 1327 86.2091 1327 84V60H1351C1353.21 60 1355 61.7909 1355 64V88H1331ZM1355 99.9999V200H1327V99.9999H1355ZM1151 98C1159.31 98 1166.41 99.8318 1173 103C1179.59 106.036 1184.31 110.324 1188 116C1191.82 121.544 1194 127.608 1194 135V200H1167V185C1165.29 189.62 1161.14 194.096 1156 197C1150.99 199.772 1145.85 200 1139 200C1132.67 200 1127.01 199.508 1122 197C1117.12 194.36 1112.77 190.488 1110 186C1107.23 181.38 1106 176.676 1106 171C1106 161.231 1109.41 153.544 1116 148C1122.72 142.324 1131.06 139 1142 139H1159C1161.37 139 1163.68 138.32 1165 137C1166.32 135.548 1167 134.112 1167 132C1167 127.776 1165.16 124.508 1162 122C1158.84 119.36 1154.54 118 1149 118C1143.33 118 1139.3 119.964 1136 123C1132.84 126.036 1130.26 129.512 1130 134H1106C1106.4 127.268 1108.31 121.412 1112 116C1115.69 110.456 1120.41 106.168 1127 103C1133.59 99.8318 1142.17 98 1151 98ZM1146 181C1152.59 181 1157.31 178.224 1161 174C1164.82 169.776 1167 164.6 1167 158V157H1147C1142.78 157 1138.64 157.624 1136 160C1133.36 162.376 1132 166.172 1132 170C1132 173.3 1133.5 175.888 1136 178C1138.5 179.98 1142.18 181 1146 181ZM970 70H997V98.9999H1024V122.001H997V162C997 171.454 1001.64 177 1011 177H1024V200H1008C996.405 200 986.852 196.303 980 190C973.28 183.697 970 175.424 970 164V122.001H951V98.9999H964C967.313 98.9999 970 96.3137 970 93V70Z"
13+
fill="currentColor"
14+
/>
15+
<path
16+
d="M377 200C379.16 200 381 198.209 381 196V103C381 103 386 112 395 127L434 194C435.785 197.74 439.744 200 443 200H470V50H443C441.202 50 439 51.4941 439 54V148L421 116L385 55C383.248 51.8912 379.479 50 376 50H350V200H377Z"
17+
class="nuxt"
18+
/>
19+
<path
20+
d="M726 92H739C742.314 92 745 89.3137 745 86V60H773V92H800V116H773V159C773 169.5 778.057 174 787 174H800V200H783C759.948 200 745 185.071 745 160V116H726V92Z"
21+
class="nuxt"
22+
/>
23+
<path
24+
d="M591 92V154C591 168.004 585.742 179.809 578 188C570.258 196.191 559.566 200 545 200C530.434 200 518.742 196.191 511 188C503.389 179.809 498 168.004 498 154V92H514C517.412 92 520.769 92.622 523 95C525.231 97.2459 526 98.5652 526 102V154C526 162.059 526.457 167.037 530 171C533.543 174.831 537.914 176 545 176C552.217 176 555.457 174.831 559 171C562.543 167.037 563 162.059 563 154V102C563 98.5652 563.769 96.378 566 94C567.96 91.9107 570.028 91.9599 573 92C573.411 92.0055 574.586 92 575 92H591Z"
25+
class="nuxt"
26+
/>
27+
<path
28+
d="M676 144L710 92H684C680.723 92 677.812 93.1758 676 96L660 120L645 97C643.188 94.1758 639.277 92 636 92H611L645 143L608 200H634C637.25 200 640.182 196.787 642 194L660 167L679 195C680.818 197.787 683.75 200 687 200H713L676 144Z"
29+
class="nuxt"
30+
/>
31+
<path
32+
d="M168 200H279C282.542 200 285.932 198.756 289 197C292.068 195.244 295.23 193.041 297 190C298.77 186.959 300.002 183.51 300 179.999C299.998 176.488 298.773 173.04 297 170.001L222 41C220.23 37.96 218.067 35.7552 215 34C211.933 32.2448 207.542 31 204 31C200.458 31 197.067 32.2448 194 34C190.933 35.7552 188.77 37.96 187 41L168 74L130 9.99764C128.228 6.95784 126.068 3.75491 123 2C119.932 0.245087 116.542 0 113 0C109.458 0 106.068 0.245087 103 2C99.9323 3.75491 96.7717 6.95784 95 9.99764L2 170.001C0.226979 173.04 0.00154312 176.488 1.90993e-06 179.999C-0.0015393 183.51 0.229648 186.959 2 190C3.77035 193.04 6.93245 195.244 10 197C13.0675 198.756 16.4578 200 20 200H90C117.737 200 137.925 187.558 152 164L186 105L204 74L259 168H186L168 200ZM89 168H40L113 42L150 105L125.491 147.725C116.144 163.01 105.488 168 89 168Z"
33+
fill="currentColor"
34+
/>
935
</svg>
1036
</template>
1137

docs/error.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
2-
import type { NuxtError } from '#app'
32
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
3+
import type { NuxtError } from '#app'
44
55
useSeoMeta({
66
title: 'Page not found',
@@ -20,15 +20,15 @@ useHead({
2020
const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation())
2121
const { data: files } = useLazyFetch<ParsedContent[]>('/api/search.json', {
2222
default: () => [],
23-
server: false,
23+
server: false
2424
})
2525
2626
provide('navigation', navigation)
2727
</script>
2828

2929
<template>
3030
<div>
31-
<Header />
31+
<TheHeader />
3232

3333
<UMain>
3434
<UContainer>
@@ -38,10 +38,13 @@ provide('navigation', navigation)
3838
</UContainer>
3939
</UMain>
4040

41-
<Footer />
41+
<TheFooter />
4242

4343
<ClientOnly>
44-
<LazyUContentSearch :files="files" :navigation="navigation" />
44+
<LazyUContentSearch
45+
:files="files"
46+
:navigation="navigation"
47+
/>
4548
</ClientOnly>
4649

4750
<UNotifications />

docs/nuxt.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default defineNuxtConfig({
1212
icons: ['heroicons', 'simple-icons']
1313
},
1414
routeRules: {
15-
'/api/search.json': { prerender: true },
15+
'/api/search.json': { prerender: true }
1616
},
1717
// Devtools / Typescript
1818
devtools: { enabled: true },

docs/pages/[...slug].vue

+35-9
Original file line numberDiff line numberDiff line change
@@ -39,29 +39,55 @@ const links = computed(() => [toc?.bottom?.edit && {
3939
icon: 'i-heroicons-pencil-square',
4040
label: 'Edit this page',
4141
to: `${toc.bottom.edit}/${page?.value?._file}`,
42-
target: '_blank',
42+
target: '_blank'
4343
}, ...(toc?.bottom?.links || [])].filter(Boolean))
4444
</script>
4545

4646
<template>
4747
<UPage>
48-
<UPageHeader :title="page.title" :description="page.description" :links="page.links" :headline="headline" />
48+
<UPageHeader
49+
:title="page.title"
50+
:description="page.description"
51+
:links="page.links"
52+
:headline="headline"
53+
/>
4954

5055
<UPageBody prose>
51-
<ContentRenderer v-if="page.body" :value="page" />
56+
<ContentRenderer
57+
v-if="page.body"
58+
:value="page"
59+
/>
5260

5361
<hr v-if="surround?.length">
5462

5563
<UContentSurround :surround="surround" />
5664
</UPageBody>
5765

58-
<template v-if="page.toc !== false" #right>
59-
<UContentToc :title="toc?.title" :links="page.body?.toc?.links">
60-
<template v-if="toc?.bottom" #bottom>
61-
<div class="hidden lg:block space-y-6" :class="{ '!mt-6': page.body?.toc?.links?.length }">
62-
<UDivider v-if="page.body?.toc?.links?.length" type="dashed" />
66+
<template
67+
v-if="page.toc !== false"
68+
#right
69+
>
70+
<UContentToc
71+
:title="toc?.title"
72+
:links="page.body?.toc?.links"
73+
>
74+
<template
75+
v-if="toc?.bottom"
76+
#bottom
77+
>
78+
<div
79+
class="hidden lg:block space-y-6"
80+
:class="{ '!mt-6': page.body?.toc?.links?.length }"
81+
>
82+
<UDivider
83+
v-if="page.body?.toc?.links?.length"
84+
type="dashed"
85+
/>
6386

64-
<UPageLinks :title="toc.bottom.title" :links="links" />
87+
<UPageLinks
88+
:title="toc.bottom.title"
89+
:links="links"
90+
/>
6591
</div>
6692
</template>
6793
</UContentToc>

0 commit comments

Comments
 (0)