文件操作 - server-component.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/nuxt/dist/components/runtime/server-component.js
编辑文件内容
import { defineComponent, getCurrentInstance, h, ref } from "vue"; import NuxtIsland from "#app/components/nuxt-island"; import { useRoute } from "#app/composables/router"; import { isPrerendered } from "#app/composables/payload"; export const createServerComponent = /* @__NO_SIDE_EFFECTS__ */ (name) => { return defineComponent({ name, inheritAttrs: false, props: { lazy: Boolean }, emits: ["error"], setup(props, { attrs, slots, expose, emit }) { const vm = getCurrentInstance(); const islandRef = ref(null); expose({ refresh: () => islandRef.value?.refresh() }); return () => { return h(NuxtIsland, { name, lazy: props.lazy, props: attrs, scopeId: vm?.vnode.scopeId, ref: islandRef, onError: (err) => { emit("error", err); } }, slots); }; } }); }; export const createIslandPage = /* @__NO_SIDE_EFFECTS__ */ (name) => { return defineComponent({ name, inheritAttrs: false, props: { lazy: Boolean }, async setup(props, { slots, expose }) { const islandRef = ref(null); expose({ refresh: () => islandRef.value?.refresh() }); const route = useRoute(); const path = import.meta.client && await isPrerendered(route.path) ? route.path : route.fullPath.replace(/#.*$/, ""); return () => { return h("div", [ h(NuxtIsland, { name: `page:${name}`, lazy: props.lazy, ref: islandRef, context: { url: path } }, slots) ]); }; } }); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件