![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/.cache/nuxt/mixins/ |
import Vue from 'vue' import { hasFetch, normalizeError, addLifecycleHook, purifyData, createGetCounter } from '../utils' async function serverPrefetch() { if (!this._fetchOnServer) { return } // Call and await on $fetch try { await this.$options.fetch.call(this) } catch (err) { if (process.dev) { console.error('Error in fetch():', err) } this.$fetchState.error = normalizeError(err) } this.$fetchState.pending = false // Define an ssrKey for hydration this._fetchKey = this._fetchKey || this.$ssrContext.fetchCounters['']++ // Add data-fetch-key on parent element of Component const attrs = this.$vnode.data.attrs = this.$vnode.data.attrs || {} attrs['data-fetch-key'] = this._fetchKey // Add to ssrContext for window.__NUXT__.fetch this.$ssrContext.nuxt.fetch[this._fetchKey] = this.$fetchState.error ? { _error: this.$fetchState.error } : purifyData(this._data) } export default { created() { if (!hasFetch(this)) { return } if (typeof this.$options.fetchOnServer === 'function') { this._fetchOnServer = this.$options.fetchOnServer.call(this) !== false } else { this._fetchOnServer = this.$options.fetchOnServer !== false } const defaultKey = this.$options._scopeId || this.$options.name || '' const getCounter = createGetCounter(this.$ssrContext.fetchCounters, defaultKey) if (typeof this.$options.fetchKey === 'function') { this._fetchKey = this.$options.fetchKey.call(this, getCounter) } else { const key = 'string' === typeof this.$options.fetchKey ? this.$options.fetchKey : defaultKey this._fetchKey = key ? key + ':' + getCounter(key) : String(getCounter(key)) } // Added for remove vue undefined warning while ssr this.$fetch = () => {} // issue #8043 Vue.util.defineReactive(this, '$fetchState', { pending: true, error: null, timestamp: Date.now() }) addLifecycleHook(this, 'serverPrefetch', serverPrefetch) } }