vue#defineAsyncComponent JavaScript Examples

The following examples show how to use vue#defineAsyncComponent. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: pagesComponents.js    From Libellux-Up-and-Running with MIT License 6 votes vote down vote up
pagesComponents = {
  // path: /
  "v-8daa1a0e": defineAsyncComponent(() => import(/* webpackChunkName: "v-8daa1a0e" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/index.html.vue")),
  // path: /ansible/
  "v-8fc8fc20": defineAsyncComponent(() => import(/* webpackChunkName: "v-8fc8fc20" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/ansible/index.html.vue")),
  // path: /clamav/
  "v-c638a1e8": defineAsyncComponent(() => import(/* webpackChunkName: "v-c638a1e8" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/clamav/index.html.vue")),
  // path: /graylog/
  "v-45ab5f72": defineAsyncComponent(() => import(/* webpackChunkName: "v-45ab5f72" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/graylog/index.html.vue")),
  // path: /mmonit/
  "v-9f469928": defineAsyncComponent(() => import(/* webpackChunkName: "v-9f469928" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/mmonit/index.html.vue")),
  // path: /openvas/
  "v-8eb80d6c": defineAsyncComponent(() => import(/* webpackChunkName: "v-8eb80d6c" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/openvas/index.html.vue")),
  // path: /ossec/
  "v-e4dd43ca": defineAsyncComponent(() => import(/* webpackChunkName: "v-e4dd43ca" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/ossec/index.html.vue")),
  // path: /privacyidea/
  "v-027091ee": defineAsyncComponent(() => import(/* webpackChunkName: "v-027091ee" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/privacyidea/index.html.vue")),
  // path: /psad/
  "v-15230830": defineAsyncComponent(() => import(/* webpackChunkName: "v-15230830" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/psad/index.html.vue")),
  // path: /rsyslog/
  "v-9d458a02": defineAsyncComponent(() => import(/* webpackChunkName: "v-9d458a02" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/rsyslog/index.html.vue")),
  // path: /wireguard/
  "v-05c87ea8": defineAsyncComponent(() => import(/* webpackChunkName: "v-05c87ea8" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/wireguard/index.html.vue")),
  // path: /404.html
  "v-3706649a": defineAsyncComponent(() => import(/* webpackChunkName: "v-3706649a" */"/home/forge/Libellux-Up-and-Running/docs/.vuepress/.temp/pages/404.html.vue")),
}
Example #2
Source File: layoutComponents.js    From Libellux-Up-and-Running with MIT License 5 votes vote down vote up
layoutComponents = {
  "404": defineAsyncComponent(() => import("/home/forge/Libellux-Up-and-Running/node_modules/@vuepress/theme-default/lib/client/layouts/404.vue")),
  "Layout": defineAsyncComponent(() => import("/home/forge/Libellux-Up-and-Running/node_modules/@vuepress/theme-default/lib/client/layouts/Layout.vue")),
}
Example #3
Source File: main.js    From module-federation-examples with MIT License 5 votes vote down vote up
Content = defineAsyncComponent(() => import('home/Content'))
Example #4
Source File: main.js    From module-federation-examples with MIT License 5 votes vote down vote up
Button = defineAsyncComponent(() => import('home/Button'))