components.d.ts 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. import type { DefineComponent, SlotsType } from 'vue'
  2. type IslandComponent<T extends DefineComponent> = T & DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>>
  3. interface _GlobalComponents {
  4. 'AdvertisingBuyAD': typeof import("../components/advertising/BuyAD.vue")['default']
  5. 'AdvertisingOrderList': typeof import("../components/advertising/OrderList.vue")['default']
  6. 'CompanyClass': typeof import("../components/company/class.vue")['default']
  7. 'CompanyDetail': typeof import("../components/company/detail.vue")['default']
  8. 'CompanyList': typeof import("../components/company/list.vue")['default']
  9. 'CompanyListSec': typeof import("../components/company/list_sec.vue")['default']
  10. 'DetailHotNews': typeof import("../components/detail/HotNews.vue")['default']
  11. 'DetailHotNews2': typeof import("../components/detail/HotNews2.vue")['default']
  12. 'GoodsSubMenu1': typeof import("../components/goods/SubMenu1.vue")['default']
  13. 'GoodsSubMenu2': typeof import("../components/goods/SubMenu2.vue")['default']
  14. 'GoodsSubMenu3': typeof import("../components/goods/SubMenu3.vue")['default']
  15. 'GoodsClass': typeof import("../components/goods/class.vue")['default']
  16. 'GoodsDetail': typeof import("../components/goods/detail.vue")['default']
  17. 'GoodsDetail3': typeof import("../components/goods/detail3.vue")['default']
  18. 'GoodsDetailSec': typeof import("../components/goods/detail_sec.vue")['default']
  19. 'GoodsListOne': typeof import("../components/goods/list_one.vue")['default']
  20. 'GoodsListSec': typeof import("../components/goods/list_sec.vue")['default']
  21. 'GoodsSubMenu': typeof import("../components/goods/subMenu.vue")['default']
  22. 'HomeAdvertising': typeof import("../components/home/Advertising.vue")['default']
  23. 'HomeAdvertisingClass': typeof import("../components/home/AdvertisingClass.vue")['default']
  24. 'HomeBigSwiper': typeof import("../components/home/BigSwiper.vue")['default']
  25. 'HomeBigTitleList': typeof import("../components/home/BigTitle_List.vue")['default']
  26. 'HomeListSecondaryHeading': typeof import("../components/home/ListSecondaryHeading.vue")['default']
  27. 'HomePageMessage': typeof import("../components/home/PageMessage.vue")['default']
  28. 'HomePagination': typeof import("../components/home/Pagination.vue")['default']
  29. 'HomeSecondaryHeading': typeof import("../components/home/SecondaryHeading.vue")['default']
  30. 'HomeSmallSwiper1': typeof import("../components/home/SmallSwiper1.vue")['default']
  31. 'HomeSmallSwiperNmg': typeof import("../components/home/SmallSwiperNmg.vue")['default']
  32. 'HomeSurveyvote': typeof import("../components/home/Surveyvote.vue")['default']
  33. 'HomeSwiperNzgx': typeof import("../components/home/SwiperNzgx.vue")['default']
  34. 'HomeSwiperSnsc': typeof import("../components/home/SwiperSnsc.vue")['default']
  35. 'HomeSwiperSnscChannel': typeof import("../components/home/SwiperSnscChannel.vue")['default']
  36. 'HomeTopTen': typeof import("../components/home/TopTen.vue")['default']
  37. 'HomeAdAdindexmain': typeof import("../components/home/ad/Adindexmain.vue")['default']
  38. 'HomeFoot': typeof import("../components/home/foot.vue")['default']
  39. 'HomeFoot1': typeof import("../components/home/foot1.vue")['default']
  40. 'HomeKefu': typeof import("../components/home/kefu.vue")['default']
  41. 'HomePageHead': typeof import("../components/home/pageHead.vue")['default']
  42. 'HomePageNavigation': typeof import("../components/home/pageNavigation.vue")['default']
  43. 'HomePageNavigation1': typeof import("../components/home/pageNavigation1.vue")['default']
  44. 'NewsClass': typeof import("../components/news/class.vue")['default']
  45. 'NewsDetail': typeof import("../components/news/detail.vue")['default']
  46. 'NewsDetailSec': typeof import("../components/news/detail_sec.vue")['default']
  47. 'NewsList': typeof import("../components/news/list.vue")['default']
  48. 'NewsListSec': typeof import("../components/news/list_sec.vue")['default']
  49. 'SearchCompany': typeof import("../components/search/company.vue")['default']
  50. 'SearchGoods': typeof import("../components/search/goods.vue")['default']
  51. 'SearchNews': typeof import("../components/search/news.vue")['default']
  52. 'SearchProject': typeof import("../components/search/project.vue")['default']
  53. 'NuxtWelcome': typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  54. 'NuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  55. 'NuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  56. 'ClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  57. 'DevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  58. 'ServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  59. 'NuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  60. 'NuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  61. 'NuxtRouteAnnouncer': typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  62. 'NuxtImg': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  63. 'NuxtPicture': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  64. 'NuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  65. 'NoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  66. 'Link': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  67. 'Base': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  68. 'Title': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  69. 'Meta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  70. 'Style': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  71. 'Head': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  72. 'Html': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  73. 'Body': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  74. 'NuxtIsland': typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  75. 'NuxtRouteAnnouncer': IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  76. 'LazyAdvertisingBuyAD': typeof import("../components/advertising/BuyAD.vue")['default']
  77. 'LazyAdvertisingOrderList': typeof import("../components/advertising/OrderList.vue")['default']
  78. 'LazyCompanyClass': typeof import("../components/company/class.vue")['default']
  79. 'LazyCompanyDetail': typeof import("../components/company/detail.vue")['default']
  80. 'LazyCompanyList': typeof import("../components/company/list.vue")['default']
  81. 'LazyCompanyListSec': typeof import("../components/company/list_sec.vue")['default']
  82. 'LazyDetailHotNews': typeof import("../components/detail/HotNews.vue")['default']
  83. 'LazyDetailHotNews2': typeof import("../components/detail/HotNews2.vue")['default']
  84. 'LazyGoodsSubMenu1': typeof import("../components/goods/SubMenu1.vue")['default']
  85. 'LazyGoodsSubMenu2': typeof import("../components/goods/SubMenu2.vue")['default']
  86. 'LazyGoodsSubMenu3': typeof import("../components/goods/SubMenu3.vue")['default']
  87. 'LazyGoodsClass': typeof import("../components/goods/class.vue")['default']
  88. 'LazyGoodsDetail': typeof import("../components/goods/detail.vue")['default']
  89. 'LazyGoodsDetail3': typeof import("../components/goods/detail3.vue")['default']
  90. 'LazyGoodsDetailSec': typeof import("../components/goods/detail_sec.vue")['default']
  91. 'LazyGoodsListOne': typeof import("../components/goods/list_one.vue")['default']
  92. 'LazyGoodsListSec': typeof import("../components/goods/list_sec.vue")['default']
  93. 'LazyGoodsSubMenu': typeof import("../components/goods/subMenu.vue")['default']
  94. 'LazyHomeAdvertising': typeof import("../components/home/Advertising.vue")['default']
  95. 'LazyHomeAdvertisingClass': typeof import("../components/home/AdvertisingClass.vue")['default']
  96. 'LazyHomeBigSwiper': typeof import("../components/home/BigSwiper.vue")['default']
  97. 'LazyHomeBigTitleList': typeof import("../components/home/BigTitle_List.vue")['default']
  98. 'LazyHomeListSecondaryHeading': typeof import("../components/home/ListSecondaryHeading.vue")['default']
  99. 'LazyHomePageMessage': typeof import("../components/home/PageMessage.vue")['default']
  100. 'LazyHomePagination': typeof import("../components/home/Pagination.vue")['default']
  101. 'LazyHomeSecondaryHeading': typeof import("../components/home/SecondaryHeading.vue")['default']
  102. 'LazyHomeSmallSwiper1': typeof import("../components/home/SmallSwiper1.vue")['default']
  103. 'LazyHomeSmallSwiperNmg': typeof import("../components/home/SmallSwiperNmg.vue")['default']
  104. 'LazyHomeSurveyvote': typeof import("../components/home/Surveyvote.vue")['default']
  105. 'LazyHomeSwiperNzgx': typeof import("../components/home/SwiperNzgx.vue")['default']
  106. 'LazyHomeSwiperSnsc': typeof import("../components/home/SwiperSnsc.vue")['default']
  107. 'LazyHomeSwiperSnscChannel': typeof import("../components/home/SwiperSnscChannel.vue")['default']
  108. 'LazyHomeTopTen': typeof import("../components/home/TopTen.vue")['default']
  109. 'LazyHomeAdAdindexmain': typeof import("../components/home/ad/Adindexmain.vue")['default']
  110. 'LazyHomeFoot': typeof import("../components/home/foot.vue")['default']
  111. 'LazyHomeFoot1': typeof import("../components/home/foot1.vue")['default']
  112. 'LazyHomeKefu': typeof import("../components/home/kefu.vue")['default']
  113. 'LazyHomePageHead': typeof import("../components/home/pageHead.vue")['default']
  114. 'LazyHomePageNavigation': typeof import("../components/home/pageNavigation.vue")['default']
  115. 'LazyHomePageNavigation1': typeof import("../components/home/pageNavigation1.vue")['default']
  116. 'LazyNewsClass': typeof import("../components/news/class.vue")['default']
  117. 'LazyNewsDetail': typeof import("../components/news/detail.vue")['default']
  118. 'LazyNewsDetailSec': typeof import("../components/news/detail_sec.vue")['default']
  119. 'LazyNewsList': typeof import("../components/news/list.vue")['default']
  120. 'LazyNewsListSec': typeof import("../components/news/list_sec.vue")['default']
  121. 'LazySearchCompany': typeof import("../components/search/company.vue")['default']
  122. 'LazySearchGoods': typeof import("../components/search/goods.vue")['default']
  123. 'LazySearchNews': typeof import("../components/search/news.vue")['default']
  124. 'LazySearchProject': typeof import("../components/search/project.vue")['default']
  125. 'LazyNuxtWelcome': typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  126. 'LazyNuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  127. 'LazyNuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  128. 'LazyClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  129. 'LazyDevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  130. 'LazyServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  131. 'LazyNuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  132. 'LazyNuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  133. 'LazyNuxtRouteAnnouncer': typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  134. 'LazyNuxtImg': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  135. 'LazyNuxtPicture': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  136. 'LazyNuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  137. 'LazyNoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  138. 'LazyLink': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  139. 'LazyBase': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  140. 'LazyTitle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  141. 'LazyMeta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  142. 'LazyStyle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  143. 'LazyHead': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  144. 'LazyHtml': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  145. 'LazyBody': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  146. 'LazyNuxtIsland': typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  147. 'LazyNuxtRouteAnnouncer': IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  148. }
  149. declare module 'vue' {
  150. export interface GlobalComponents extends _GlobalComponents { }
  151. }
  152. export const AdvertisingBuyAD: typeof import("../components/advertising/BuyAD.vue")['default']
  153. export const AdvertisingOrderList: typeof import("../components/advertising/OrderList.vue")['default']
  154. export const CompanyClass: typeof import("../components/company/class.vue")['default']
  155. export const CompanyDetail: typeof import("../components/company/detail.vue")['default']
  156. export const CompanyList: typeof import("../components/company/list.vue")['default']
  157. export const CompanyListSec: typeof import("../components/company/list_sec.vue")['default']
  158. export const DetailHotNews: typeof import("../components/detail/HotNews.vue")['default']
  159. export const DetailHotNews2: typeof import("../components/detail/HotNews2.vue")['default']
  160. export const GoodsSubMenu1: typeof import("../components/goods/SubMenu1.vue")['default']
  161. export const GoodsSubMenu2: typeof import("../components/goods/SubMenu2.vue")['default']
  162. export const GoodsSubMenu3: typeof import("../components/goods/SubMenu3.vue")['default']
  163. export const GoodsClass: typeof import("../components/goods/class.vue")['default']
  164. export const GoodsDetail: typeof import("../components/goods/detail.vue")['default']
  165. export const GoodsDetail3: typeof import("../components/goods/detail3.vue")['default']
  166. export const GoodsDetailSec: typeof import("../components/goods/detail_sec.vue")['default']
  167. export const GoodsListOne: typeof import("../components/goods/list_one.vue")['default']
  168. export const GoodsListSec: typeof import("../components/goods/list_sec.vue")['default']
  169. export const GoodsSubMenu: typeof import("../components/goods/subMenu.vue")['default']
  170. export const HomeAdvertising: typeof import("../components/home/Advertising.vue")['default']
  171. export const HomeAdvertisingClass: typeof import("../components/home/AdvertisingClass.vue")['default']
  172. export const HomeBigSwiper: typeof import("../components/home/BigSwiper.vue")['default']
  173. export const HomeBigTitleList: typeof import("../components/home/BigTitle_List.vue")['default']
  174. export const HomeListSecondaryHeading: typeof import("../components/home/ListSecondaryHeading.vue")['default']
  175. export const HomePageMessage: typeof import("../components/home/PageMessage.vue")['default']
  176. export const HomePagination: typeof import("../components/home/Pagination.vue")['default']
  177. export const HomeSecondaryHeading: typeof import("../components/home/SecondaryHeading.vue")['default']
  178. export const HomeSmallSwiper1: typeof import("../components/home/SmallSwiper1.vue")['default']
  179. export const HomeSmallSwiperNmg: typeof import("../components/home/SmallSwiperNmg.vue")['default']
  180. export const HomeSurveyvote: typeof import("../components/home/Surveyvote.vue")['default']
  181. export const HomeSwiperNzgx: typeof import("../components/home/SwiperNzgx.vue")['default']
  182. export const HomeSwiperSnsc: typeof import("../components/home/SwiperSnsc.vue")['default']
  183. export const HomeSwiperSnscChannel: typeof import("../components/home/SwiperSnscChannel.vue")['default']
  184. export const HomeTopTen: typeof import("../components/home/TopTen.vue")['default']
  185. export const HomeAdAdindexmain: typeof import("../components/home/ad/Adindexmain.vue")['default']
  186. export const HomeFoot: typeof import("../components/home/foot.vue")['default']
  187. export const HomeFoot1: typeof import("../components/home/foot1.vue")['default']
  188. export const HomeKefu: typeof import("../components/home/kefu.vue")['default']
  189. export const HomePageHead: typeof import("../components/home/pageHead.vue")['default']
  190. export const HomePageNavigation: typeof import("../components/home/pageNavigation.vue")['default']
  191. export const HomePageNavigation1: typeof import("../components/home/pageNavigation1.vue")['default']
  192. export const NewsClass: typeof import("../components/news/class.vue")['default']
  193. export const NewsDetail: typeof import("../components/news/detail.vue")['default']
  194. export const NewsDetailSec: typeof import("../components/news/detail_sec.vue")['default']
  195. export const NewsList: typeof import("../components/news/list.vue")['default']
  196. export const NewsListSec: typeof import("../components/news/list_sec.vue")['default']
  197. export const SearchCompany: typeof import("../components/search/company.vue")['default']
  198. export const SearchGoods: typeof import("../components/search/goods.vue")['default']
  199. export const SearchNews: typeof import("../components/search/news.vue")['default']
  200. export const SearchProject: typeof import("../components/search/project.vue")['default']
  201. export const NuxtWelcome: typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  202. export const NuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  203. export const NuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  204. export const ClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  205. export const DevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  206. export const ServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  207. export const NuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  208. export const NuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  209. export const NuxtRouteAnnouncer: typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  210. export const NuxtImg: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  211. export const NuxtPicture: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  212. export const NuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  213. export const NoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  214. export const Link: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  215. export const Base: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  216. export const Title: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  217. export const Meta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  218. export const Style: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  219. export const Head: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  220. export const Html: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  221. export const Body: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  222. export const NuxtIsland: typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  223. export const NuxtRouteAnnouncer: IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  224. export const LazyAdvertisingBuyAD: typeof import("../components/advertising/BuyAD.vue")['default']
  225. export const LazyAdvertisingOrderList: typeof import("../components/advertising/OrderList.vue")['default']
  226. export const LazyCompanyClass: typeof import("../components/company/class.vue")['default']
  227. export const LazyCompanyDetail: typeof import("../components/company/detail.vue")['default']
  228. export const LazyCompanyList: typeof import("../components/company/list.vue")['default']
  229. export const LazyCompanyListSec: typeof import("../components/company/list_sec.vue")['default']
  230. export const LazyDetailHotNews: typeof import("../components/detail/HotNews.vue")['default']
  231. export const LazyDetailHotNews2: typeof import("../components/detail/HotNews2.vue")['default']
  232. export const LazyGoodsSubMenu1: typeof import("../components/goods/SubMenu1.vue")['default']
  233. export const LazyGoodsSubMenu2: typeof import("../components/goods/SubMenu2.vue")['default']
  234. export const LazyGoodsSubMenu3: typeof import("../components/goods/SubMenu3.vue")['default']
  235. export const LazyGoodsClass: typeof import("../components/goods/class.vue")['default']
  236. export const LazyGoodsDetail: typeof import("../components/goods/detail.vue")['default']
  237. export const LazyGoodsDetail3: typeof import("../components/goods/detail3.vue")['default']
  238. export const LazyGoodsDetailSec: typeof import("../components/goods/detail_sec.vue")['default']
  239. export const LazyGoodsListOne: typeof import("../components/goods/list_one.vue")['default']
  240. export const LazyGoodsListSec: typeof import("../components/goods/list_sec.vue")['default']
  241. export const LazyGoodsSubMenu: typeof import("../components/goods/subMenu.vue")['default']
  242. export const LazyHomeAdvertising: typeof import("../components/home/Advertising.vue")['default']
  243. export const LazyHomeAdvertisingClass: typeof import("../components/home/AdvertisingClass.vue")['default']
  244. export const LazyHomeBigSwiper: typeof import("../components/home/BigSwiper.vue")['default']
  245. export const LazyHomeBigTitleList: typeof import("../components/home/BigTitle_List.vue")['default']
  246. export const LazyHomeListSecondaryHeading: typeof import("../components/home/ListSecondaryHeading.vue")['default']
  247. export const LazyHomePageMessage: typeof import("../components/home/PageMessage.vue")['default']
  248. export const LazyHomePagination: typeof import("../components/home/Pagination.vue")['default']
  249. export const LazyHomeSecondaryHeading: typeof import("../components/home/SecondaryHeading.vue")['default']
  250. export const LazyHomeSmallSwiper1: typeof import("../components/home/SmallSwiper1.vue")['default']
  251. export const LazyHomeSmallSwiperNmg: typeof import("../components/home/SmallSwiperNmg.vue")['default']
  252. export const LazyHomeSurveyvote: typeof import("../components/home/Surveyvote.vue")['default']
  253. export const LazyHomeSwiperNzgx: typeof import("../components/home/SwiperNzgx.vue")['default']
  254. export const LazyHomeSwiperSnsc: typeof import("../components/home/SwiperSnsc.vue")['default']
  255. export const LazyHomeSwiperSnscChannel: typeof import("../components/home/SwiperSnscChannel.vue")['default']
  256. export const LazyHomeTopTen: typeof import("../components/home/TopTen.vue")['default']
  257. export const LazyHomeAdAdindexmain: typeof import("../components/home/ad/Adindexmain.vue")['default']
  258. export const LazyHomeFoot: typeof import("../components/home/foot.vue")['default']
  259. export const LazyHomeFoot1: typeof import("../components/home/foot1.vue")['default']
  260. export const LazyHomeKefu: typeof import("../components/home/kefu.vue")['default']
  261. export const LazyHomePageHead: typeof import("../components/home/pageHead.vue")['default']
  262. export const LazyHomePageNavigation: typeof import("../components/home/pageNavigation.vue")['default']
  263. export const LazyHomePageNavigation1: typeof import("../components/home/pageNavigation1.vue")['default']
  264. export const LazyNewsClass: typeof import("../components/news/class.vue")['default']
  265. export const LazyNewsDetail: typeof import("../components/news/detail.vue")['default']
  266. export const LazyNewsDetailSec: typeof import("../components/news/detail_sec.vue")['default']
  267. export const LazyNewsList: typeof import("../components/news/list.vue")['default']
  268. export const LazyNewsListSec: typeof import("../components/news/list_sec.vue")['default']
  269. export const LazySearchCompany: typeof import("../components/search/company.vue")['default']
  270. export const LazySearchGoods: typeof import("../components/search/goods.vue")['default']
  271. export const LazySearchNews: typeof import("../components/search/news.vue")['default']
  272. export const LazySearchProject: typeof import("../components/search/project.vue")['default']
  273. export const LazyNuxtWelcome: typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  274. export const LazyNuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  275. export const LazyNuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  276. export const LazyClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  277. export const LazyDevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  278. export const LazyServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  279. export const LazyNuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  280. export const LazyNuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  281. export const LazyNuxtRouteAnnouncer: typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  282. export const LazyNuxtImg: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  283. export const LazyNuxtPicture: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  284. export const LazyNuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  285. export const LazyNoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  286. export const LazyLink: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  287. export const LazyBase: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  288. export const LazyTitle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  289. export const LazyMeta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  290. export const LazyStyle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  291. export const LazyHead: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  292. export const LazyHtml: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  293. export const LazyBody: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  294. export const LazyNuxtIsland: typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  295. export const LazyNuxtRouteAnnouncer: IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  296. export const componentNames: string[]