import Vue from 'vue' import Meta from 'vue-meta' import ClientOnly from 'vue-client-only' import NoSsr from 'vue-no-ssr' import { createRouter } from './router.js' import NuxtChild from './components/nuxt-child.js' import NuxtError from './components/nuxt-error.vue' import Nuxt from './components/nuxt.js' import App from './App.js' import { setContext, getLocation, getRouteData, normalizeError } from './utils' import { createStore } from './store.js' /* Plugins */ import nuxt_plugin_axios_06c6c7dd from 'nuxt_plugin_axios_06c6c7dd' // Source: .\\axios.js (mode: 'all') import nuxt_plugin_router_f342811c from 'nuxt_plugin_router_f342811c' // Source: .\\router.js (mode: 'all') import nuxt_plugin_common_9f35b6a0 from 'nuxt_plugin_common_9f35b6a0' // Source: ..\\plugins\\common (mode: 'all') import nuxt_plugin_element_7f070652 from 'nuxt_plugin_element_7f070652' // Source: ..\\plugins\\element (mode: 'all') import nuxt_plugin_nuxtAxios_67b4924e from 'nuxt_plugin_nuxtAxios_67b4924e' // Source: ..\\plugins\\nuxtAxios (mode: 'all') import nuxt_plugin_deviceType_39fdd216 from 'nuxt_plugin_deviceType_39fdd216' // Source: ..\\plugins\\deviceType (mode: 'all') import nuxt_plugin_vant_61b705b6 from 'nuxt_plugin_vant_61b705b6' // Source: ..\\plugins\\vant (mode: 'all') import nuxt_plugin_router_6bfcdbe4 from 'nuxt_plugin_router_6bfcdbe4' // Source: ..\\plugins\\router (mode: 'all') import nuxt_plugin_vant_31825081 from 'nuxt_plugin_vant_31825081' // Source: ..\\plugins\\vant.js (mode: 'client') import nuxt_plugin_rem_9edb8816 from 'nuxt_plugin_rem_9edb8816' // Source: ..\\plugins\\rem (mode: 'client') import nuxt_plugin_vconsole_6a13f1a6 from 'nuxt_plugin_vconsole_6a13f1a6' // Source: ..\\plugins\\vconsole (mode: 'client') import nuxt_plugin_vueswiper_9e702eda from 'nuxt_plugin_vueswiper_9e702eda' // Source: ..\\plugins\\vue-swiper.js (mode: 'client') import nuxt_plugin_g2_577ffbf2 from 'nuxt_plugin_g2_577ffbf2' // Source: ..\\plugins\\g2.js (mode: 'client') import nuxt_plugin_vueLazyLoad_58be327b from 'nuxt_plugin_vueLazyLoad_58be327b' // Source: ..\\plugins\\vueLazyLoad (mode: 'client') import nuxt_plugin_cropper_24b16057 from 'nuxt_plugin_cropper_24b16057' // Source: ..\\plugins\\cropper (mode: 'client') import nuxt_plugin_directive_d4d4a366 from 'nuxt_plugin_directive_d4d4a366' // Source: ..\\plugins\\directive.js (mode: 'client') import nuxt_plugin_cnzz_5b46bf07 from 'nuxt_plugin_cnzz_5b46bf07' // Source: ..\\plugins\\cnzz.js (mode: 'client') // Component: Vue.component(ClientOnly.name, ClientOnly) // TODO: Remove in Nuxt 3: Vue.component(NoSsr.name, { ...NoSsr, render (h, ctx) { if (process.client && !NoSsr._warned) { NoSsr._warned = true console.warn(' has been deprecated and will be removed in Nuxt 3, please use instead') } return NoSsr.render(h, ctx) } }) // Component: Vue.component(NuxtChild.name, NuxtChild) Vue.component('NChild', NuxtChild) // Component NuxtLink is imported in server.js or client.js // Component: Vue.component(Nuxt.name, Nuxt) Vue.use(Meta, {"keyName":"head","attribute":"data-n-head","ssrAttribute":"data-n-head-ssr","tagIDKeyName":"hid"}) const defaultTransition = {"name":"page","mode":"out-in","appear":false,"appearClass":"appear","appearActiveClass":"appear-active","appearToClass":"appear-to"} async function createApp(ssrContext, config = {}) { const router = await createRouter(ssrContext) const store = createStore(ssrContext) // Add this.$router into store actions/mutations store.$router = router // Fix SSR caveat https://github.com/nuxt/nuxt.js/issues/3757#issuecomment-414689141 const registerModule = store.registerModule store.registerModule = (path, rawModule, options) => registerModule.call(store, path, rawModule, Object.assign({ preserveState: process.client }, options)) // Create Root instance // here we inject the router and store to all child components, // making them available everywhere as `this.$router` and `this.$store`. const app = { head: {"title":"程序员客栈","meta":[{"charset":"utf-8"},{"name":"viewport","content":"width=device-width, initial-scale=1"},{"name":"applicable-device","content":"pc, mobile "},{"http-equiv":"X-UA-Compatible","content":"IE=edge,chrome=1"},{"http-equiv":"Cache-Control","content":"no-transform"},{"http-equiv":"Cache-Control","content":"no-siteapp"}],"link":[{"rel":"shortcut icon","type":"image\u002Fvnd.microsoft.icon","href":"https:\u002F\u002Fstacdn.proginn.com\u002Ffavicon_new.ico"}],"style":[],"script":[]}, store, router, nuxt: { defaultTransition, transitions: [defaultTransition], setTransitions (transitions) { if (!Array.isArray(transitions)) { transitions = [transitions] } transitions = transitions.map((transition) => { if (!transition) { transition = defaultTransition } else if (typeof transition === 'string') { transition = Object.assign({}, defaultTransition, { name: transition }) } else { transition = Object.assign({}, defaultTransition, transition) } return transition }) this.$options.nuxt.transitions = transitions return transitions }, err: null, dateErr: null, error (err) { err = err || null app.context._errored = Boolean(err) err = err ? normalizeError(err) : null let nuxt = app.nuxt // to work with @vue/composition-api, see https://github.com/nuxt/nuxt.js/issues/6517#issuecomment-573280207 if (this) { nuxt = this.nuxt || this.$options.nuxt } nuxt.dateErr = Date.now() nuxt.err = err // Used in src/server.js if (ssrContext) { ssrContext.nuxt.error = err } return err } }, ...App } // Make app available into store via this.app store.app = app const next = ssrContext ? ssrContext.next : location => app.router.push(location) // Resolve route let route if (ssrContext) { route = router.resolve(ssrContext.url).route } else { const path = getLocation(router.options.base, router.options.mode) route = router.resolve(path).route } // Set context to app.context await setContext(app, { store, route, next, error: app.nuxt.error.bind(app), payload: ssrContext ? ssrContext.payload : undefined, req: ssrContext ? ssrContext.req : undefined, res: ssrContext ? ssrContext.res : undefined, beforeRenderFns: ssrContext ? ssrContext.beforeRenderFns : undefined, ssrContext }) function inject(key, value) { if (!key) { throw new Error('inject(key, value) has no key provided') } if (value === undefined) { throw new Error(`inject('${key}', value) has no value provided`) } key = '$' + key // Add into app app[key] = value // Add into context if (!app.context[key]) { app.context[key] = value } // Add into store store[key] = app[key] // Check if plugin not already installed const installKey = '__nuxt_' + key + '_installed__' if (Vue[installKey]) { return } Vue[installKey] = true // Call Vue.use() to install the plugin into vm Vue.use(() => { if (!Object.prototype.hasOwnProperty.call(Vue.prototype, key)) { Object.defineProperty(Vue.prototype, key, { get () { return this.$root.$options[key] } }) } }) } // Inject runtime config as $config inject('config', config) if (process.client) { // Replace store state before plugins execution if (window.__NUXT__ && window.__NUXT__.state) { store.replaceState(window.__NUXT__.state) } } // Add enablePreview(previewData = {}) in context for plugins if (process.static && process.client) { app.context.enablePreview = function (previewData = {}) { app.previewData = Object.assign({}, previewData) inject('preview', previewData) } } // Plugin execution if (typeof nuxt_plugin_axios_06c6c7dd === 'function') { await nuxt_plugin_axios_06c6c7dd(app.context, inject) } if (typeof nuxt_plugin_router_f342811c === 'function') { await nuxt_plugin_router_f342811c(app.context, inject) } if (typeof nuxt_plugin_common_9f35b6a0 === 'function') { await nuxt_plugin_common_9f35b6a0(app.context, inject) } if (typeof nuxt_plugin_element_7f070652 === 'function') { await nuxt_plugin_element_7f070652(app.context, inject) } if (typeof nuxt_plugin_nuxtAxios_67b4924e === 'function') { await nuxt_plugin_nuxtAxios_67b4924e(app.context, inject) } if (typeof nuxt_plugin_deviceType_39fdd216 === 'function') { await nuxt_plugin_deviceType_39fdd216(app.context, inject) } if (typeof nuxt_plugin_vant_61b705b6 === 'function') { await nuxt_plugin_vant_61b705b6(app.context, inject) } if (typeof nuxt_plugin_router_6bfcdbe4 === 'function') { await nuxt_plugin_router_6bfcdbe4(app.context, inject) } if (process.client && typeof nuxt_plugin_vant_31825081 === 'function') { await nuxt_plugin_vant_31825081(app.context, inject) } if (process.client && typeof nuxt_plugin_rem_9edb8816 === 'function') { await nuxt_plugin_rem_9edb8816(app.context, inject) } if (process.client && typeof nuxt_plugin_vconsole_6a13f1a6 === 'function') { await nuxt_plugin_vconsole_6a13f1a6(app.context, inject) } if (process.client && typeof nuxt_plugin_vueswiper_9e702eda === 'function') { await nuxt_plugin_vueswiper_9e702eda(app.context, inject) } if (process.client && typeof nuxt_plugin_g2_577ffbf2 === 'function') { await nuxt_plugin_g2_577ffbf2(app.context, inject) } if (process.client && typeof nuxt_plugin_vueLazyLoad_58be327b === 'function') { await nuxt_plugin_vueLazyLoad_58be327b(app.context, inject) } if (process.client && typeof nuxt_plugin_cropper_24b16057 === 'function') { await nuxt_plugin_cropper_24b16057(app.context, inject) } if (process.client && typeof nuxt_plugin_directive_d4d4a366 === 'function') { await nuxt_plugin_directive_d4d4a366(app.context, inject) } if (process.client && typeof nuxt_plugin_cnzz_5b46bf07 === 'function') { await nuxt_plugin_cnzz_5b46bf07(app.context, inject) } // Lock enablePreview in context if (process.static && process.client) { app.context.enablePreview = function () { console.warn('You cannot call enablePreview() outside a plugin.') } } // If server-side, wait for async component to be resolved first if (process.server && ssrContext && ssrContext.url) { await new Promise((resolve, reject) => { router.push(ssrContext.url, resolve, () => { // navigated to a different route in router guard const unregister = router.afterEach(async (to, from, next) => { ssrContext.url = to.fullPath app.context.route = await getRouteData(to) app.context.params = to.params || {} app.context.query = to.query || {} unregister() resolve() }) }) }) } return { store, app, router } } export { createApp, NuxtError }